Lines Matching refs:GLubyte
51 const GLubyte *pixels; in _mesa_texstore_rgb_dxt1()
52 GLubyte *dst; in _mesa_texstore_rgb_dxt1()
53 const GLubyte *tempImage = NULL; in _mesa_texstore_rgb_dxt1()
64 GLubyte *tempImageSlices[1]; in _mesa_texstore_rgb_dxt1()
65 int rgbRowStride = 3 * srcWidth * sizeof(GLubyte); in _mesa_texstore_rgb_dxt1()
66 tempImage = malloc(srcWidth * srcHeight * 3 * sizeof(GLubyte)); in _mesa_texstore_rgb_dxt1()
69 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgb_dxt1()
103 const GLubyte *pixels; in _mesa_texstore_rgba_dxt1()
104 GLubyte *dst; in _mesa_texstore_rgba_dxt1()
105 const GLubyte *tempImage = NULL; in _mesa_texstore_rgba_dxt1()
116 GLubyte *tempImageSlices[1]; in _mesa_texstore_rgba_dxt1()
117 int rgbaRowStride = 4 * srcWidth * sizeof(GLubyte); in _mesa_texstore_rgba_dxt1()
118 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt1()
121 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgba_dxt1()
159 const GLubyte *pixels; in _mesa_texstore_rgba_dxt3()
160 GLubyte *dst; in _mesa_texstore_rgba_dxt3()
161 const GLubyte *tempImage = NULL; in _mesa_texstore_rgba_dxt3()
172 GLubyte *tempImageSlices[1]; in _mesa_texstore_rgba_dxt3()
173 int rgbaRowStride = 4 * srcWidth * sizeof(GLubyte); in _mesa_texstore_rgba_dxt3()
174 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt3()
177 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgba_dxt3()
214 const GLubyte *pixels; in _mesa_texstore_rgba_dxt5()
215 GLubyte *dst; in _mesa_texstore_rgba_dxt5()
216 const GLubyte *tempImage = NULL; in _mesa_texstore_rgba_dxt5()
227 GLubyte *tempImageSlices[1]; in _mesa_texstore_rgba_dxt5()
228 int rgbaRowStride = 4 * srcWidth * sizeof(GLubyte); in _mesa_texstore_rgba_dxt5()
229 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt5()
232 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgba_dxt5()
264 fetch_rgb_dxt1(const GLubyte *map, in fetch_rgb_dxt1()
267 GLubyte tex[4]; in fetch_rgb_dxt1()
276 fetch_rgba_dxt1(const GLubyte *map, in fetch_rgba_dxt1()
279 GLubyte tex[4]; in fetch_rgba_dxt1()
288 fetch_rgba_dxt3(const GLubyte *map, in fetch_rgba_dxt3()
291 GLubyte tex[4]; in fetch_rgba_dxt3()
300 fetch_rgba_dxt5(const GLubyte *map, in fetch_rgba_dxt5()
303 GLubyte tex[4]; in fetch_rgba_dxt5()
313 fetch_srgb_dxt1(const GLubyte *map, in fetch_srgb_dxt1()
316 GLubyte tex[4]; in fetch_srgb_dxt1()
325 fetch_srgba_dxt1(const GLubyte *map, in fetch_srgba_dxt1()
328 GLubyte tex[4]; in fetch_srgba_dxt1()
337 fetch_srgba_dxt3(const GLubyte *map, in fetch_srgba_dxt3()
340 GLubyte tex[4]; in fetch_srgba_dxt3()
349 fetch_srgba_dxt5(const GLubyte *map, in fetch_srgba_dxt5()
352 GLubyte tex[4]; in fetch_srgba_dxt5()