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()
156 const GLubyte *pixels; in _mesa_texstore_rgba_dxt3()
157 GLubyte *dst; in _mesa_texstore_rgba_dxt3()
158 const GLubyte *tempImage = NULL; in _mesa_texstore_rgba_dxt3()
169 GLubyte *tempImageSlices[1]; in _mesa_texstore_rgba_dxt3()
170 int rgbaRowStride = 4 * srcWidth * sizeof(GLubyte); in _mesa_texstore_rgba_dxt3()
171 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt3()
174 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgba_dxt3()
208 const GLubyte *pixels; in _mesa_texstore_rgba_dxt5()
209 GLubyte *dst; in _mesa_texstore_rgba_dxt5()
210 const GLubyte *tempImage = NULL; in _mesa_texstore_rgba_dxt5()
221 GLubyte *tempImageSlices[1]; in _mesa_texstore_rgba_dxt5()
222 int rgbaRowStride = 4 * srcWidth * sizeof(GLubyte); in _mesa_texstore_rgba_dxt5()
223 tempImage = malloc(srcWidth * srcHeight * 4 * sizeof(GLubyte)); in _mesa_texstore_rgba_dxt5()
226 tempImageSlices[0] = (GLubyte *) tempImage; in _mesa_texstore_rgba_dxt5()
255 fetch_rgb_dxt1(const GLubyte *map, in fetch_rgb_dxt1()
258 GLubyte tex[4]; in fetch_rgb_dxt1()
267 fetch_rgba_dxt1(const GLubyte *map, in fetch_rgba_dxt1()
270 GLubyte tex[4]; in fetch_rgba_dxt1()
279 fetch_rgba_dxt3(const GLubyte *map, in fetch_rgba_dxt3()
282 GLubyte tex[4]; in fetch_rgba_dxt3()
291 fetch_rgba_dxt5(const GLubyte *map, in fetch_rgba_dxt5()
294 GLubyte tex[4]; in fetch_rgba_dxt5()
304 fetch_srgb_dxt1(const GLubyte *map, in fetch_srgb_dxt1()
307 GLubyte tex[4]; in fetch_srgb_dxt1()
316 fetch_srgba_dxt1(const GLubyte *map, in fetch_srgba_dxt1()
319 GLubyte tex[4]; in fetch_srgba_dxt1()
328 fetch_srgba_dxt3(const GLubyte *map, in fetch_srgba_dxt3()
331 GLubyte tex[4]; in fetch_srgba_dxt3()
340 fetch_srgba_dxt5(const GLubyte *map, in fetch_srgba_dxt5()
343 GLubyte tex[4]; in fetch_srgba_dxt5()