Lines Matching refs:srcMap
95 GLubyte *srcMap; in get_tex_depth() local
101 GL_MAP_READ_BIT, &srcMap, &srcRowStride); in get_tex_depth()
103 if (srcMap) { in get_tex_depth()
108 const GLubyte *src = srcMap + row * srcRowStride; in get_tex_depth()
140 GLubyte *srcMap; in get_tex_depth_stencil() local
146 GL_MAP_READ_BIT, &srcMap, &rowstride); in get_tex_depth_stencil()
148 if (srcMap) { in get_tex_depth_stencil()
150 const GLubyte *src = srcMap + row * rowstride; in get_tex_depth_stencil()
196 GLubyte *srcMap; in get_tex_stencil() local
203 &srcMap, &rowstride); in get_tex_stencil()
205 if (srcMap) { in get_tex_stencil()
207 const GLubyte *src = srcMap + row * rowstride; in get_tex_stencil()
240 GLubyte *srcMap; in get_tex_ycbcr() local
246 GL_MAP_READ_BIT, &srcMap, &rowstride); in get_tex_ycbcr()
248 if (srcMap) { in get_tex_ycbcr()
250 const GLubyte *src = srcMap + row * rowstride; in get_tex_ycbcr()
344 GLubyte *srcMap; in get_tex_rgba_compressed() local
352 &srcMap, &srcRowStride); in get_tex_rgba_compressed()
353 if (srcMap) { in get_tex_rgba_compressed()
355 srcMap, srcRowStride, tempSlice); in get_tex_rgba_compressed()
469 GLubyte *srcMap; in get_tex_rgba_uncompressed() local
481 &srcMap, &rowstride); in get_tex_rgba_uncompressed()
482 if (!srcMap) { in get_tex_rgba_uncompressed()
487 img_src = srcMap; in get_tex_rgba_uncompressed()