Lines Matching refs:srcMap
92 GLubyte *srcMap; in get_tex_depth() local
98 GL_MAP_READ_BIT, &srcMap, &srcRowStride); in get_tex_depth()
100 if (srcMap) { in get_tex_depth()
105 const GLubyte *src = srcMap + row * srcRowStride; in get_tex_depth()
139 GLubyte *srcMap; in get_tex_depth_stencil() local
145 GL_MAP_READ_BIT, &srcMap, &rowstride); in get_tex_depth_stencil()
147 if (srcMap) { in get_tex_depth_stencil()
149 const GLubyte *src = srcMap + row * rowstride; in get_tex_depth_stencil()
186 GLubyte *srcMap; in get_tex_stencil() local
193 &srcMap, &rowstride); in get_tex_stencil()
195 if (srcMap) { in get_tex_stencil()
197 const GLubyte *src = srcMap + row * rowstride; in get_tex_stencil()
230 GLubyte *srcMap; in get_tex_ycbcr() local
236 GL_MAP_READ_BIT, &srcMap, &rowstride); in get_tex_ycbcr()
238 if (srcMap) { in get_tex_ycbcr()
240 const GLubyte *src = srcMap + row * rowstride; in get_tex_ycbcr()
334 GLubyte *srcMap; in get_tex_rgba_compressed() local
342 &srcMap, &srcRowStride); in get_tex_rgba_compressed()
343 if (srcMap) { in get_tex_rgba_compressed()
345 srcMap, srcRowStride, tempSlice); in get_tex_rgba_compressed()
459 GLubyte *srcMap; in get_tex_rgba_uncompressed() local
471 &srcMap, &rowstride); in get_tex_rgba_uncompressed()
472 if (!srcMap) { in get_tex_rgba_uncompressed()
477 img_src = srcMap; in get_tex_rgba_uncompressed()