Lines Matching refs:GLubyte
75 flip_bytes( GLubyte *p, GLuint n ) in flip_bytes()
88 p[i] = (GLubyte) a; in flip_bytes()
99 _mesa_unpack_polygon_stipple( const GLubyte *pattern, GLuint dest[32], in _mesa_unpack_polygon_stipple()
102 GLubyte *ptrn = (GLubyte *) _mesa_unpack_image(2, 32, 32, 1, GL_COLOR_INDEX, in _mesa_unpack_polygon_stipple()
108 GLubyte *p = ptrn; in _mesa_unpack_polygon_stipple()
127 _mesa_pack_polygon_stipple( const GLuint pattern[32], GLubyte *dest, in _mesa_pack_polygon_stipple()
133 GLubyte ptrn[32*4]; in _mesa_pack_polygon_stipple()
136 ptrn[i * 4 + 0] = (GLubyte) ((pattern[i] >> 24) & 0xff); in _mesa_pack_polygon_stipple()
137 ptrn[i * 4 + 1] = (GLubyte) ((pattern[i] >> 16) & 0xff); in _mesa_pack_polygon_stipple()
138 ptrn[i * 4 + 2] = (GLubyte) ((pattern[i] >> 8 ) & 0xff); in _mesa_pack_polygon_stipple()
139 ptrn[i * 4 + 3] = (GLubyte) ((pattern[i] ) & 0xff); in _mesa_pack_polygon_stipple()
150 _mesa_pack_bitmap( GLint width, GLint height, const GLubyte *source, in _mesa_pack_bitmap()
151 GLubyte *dest, const struct gl_pixelstore_attrib *packing ) in _mesa_pack_bitmap()
154 const GLubyte *src; in _mesa_pack_bitmap()
162 GLubyte *dst = (GLubyte *) _mesa_image_address2d(packing, dest, in _mesa_pack_bitmap()
177 GLubyte srcMask = 128; in _mesa_pack_bitmap()
178 GLubyte dstMask = 1 << (packing->SkipPixels & 0x7); in _mesa_pack_bitmap()
179 const GLubyte *s = src; in _mesa_pack_bitmap()
180 GLubyte *d = dst; in _mesa_pack_bitmap()
204 GLubyte srcMask = 128; in _mesa_pack_bitmap()
205 GLubyte dstMask = 128 >> (packing->SkipPixels & 0x7); in _mesa_pack_bitmap()
206 const GLubyte *s = src; in _mesa_pack_bitmap()
207 GLubyte *d = dst; in _mesa_pack_bitmap()
238 GLubyte *bytes = (GLubyte *) &(VALUE); \
239 GLubyte tmp = bytes[0]; \
246 GLubyte *bytes = (GLubyte *) &(VALUE); \
247 GLubyte tmp = bytes[0]; \
279 GLubyte *ubsrc = (GLubyte *) src; in extract_uint_indexes()
281 GLubyte mask = 1 << (unpack->SkipPixels & 0x7); in extract_uint_indexes()
295 GLubyte mask = 128 >> (unpack->SkipPixels & 0x7); in extract_uint_indexes()
313 const GLubyte *s = (const GLubyte *) src; in extract_uint_indexes()
519 memcpy(dest, source, n * sizeof(GLubyte)); in _mesa_unpack_stencil_span()
560 GLubyte *dst = (GLubyte *) dest; in _mesa_unpack_stencil_span()
563 dst[i] = (GLubyte) (indexes[i] & 0xff); in _mesa_unpack_stencil_span()
599 GLenum dstType, GLvoid *dest, const GLubyte *source, in _mesa_pack_stencil_span()
602 GLubyte *stencil = malloc(n * sizeof(GLubyte)); in _mesa_pack_stencil_span()
612 memcpy(stencil, source, n * sizeof(GLubyte)); in _mesa_pack_stencil_span()
705 GLubyte *dst = (GLubyte *) dest; in _mesa_pack_stencil_span()
720 GLubyte *dst = (GLubyte *) dest; in _mesa_pack_stencil_span()
843 DEPTH_VALUES(GLubyte, UBYTE_TO_FLOAT); in _mesa_unpack_depth_span()
1022 GLubyte *dst = (GLubyte *) dest; in _mesa_pack_depth_span()
1142 const GLubyte *stencilVals, in _mesa_pack_depth_stencil_span()
1146 GLubyte *stencilCopy = malloc(n * sizeof(GLubyte)); in _mesa_pack_depth_stencil_span()
1165 memcpy(stencilCopy, stencilVals, n * sizeof(GLubyte)); in _mesa_pack_depth_stencil_span()
1242 GLubyte *destBuffer in _mesa_unpack_image()
1244 GLubyte *dst; in _mesa_unpack_image()
1259 GLubyte srcMask = 1 << (unpack->SkipPixels & 0x7); in _mesa_unpack_image()
1260 GLubyte dstMask = 128; in _mesa_unpack_image()
1261 const GLubyte *s = src; in _mesa_unpack_image()
1262 GLubyte *d = dst; in _mesa_unpack_image()
1286 GLubyte srcMask = 128 >> (unpack->SkipPixels & 0x7); in _mesa_unpack_image()
1287 GLubyte dstMask = 128; in _mesa_unpack_image()
1288 const GLubyte *s = src; in _mesa_unpack_image()
1289 GLubyte *d = dst; in _mesa_unpack_image()
1319 flip_bytes((GLubyte *) dst, bytesPerRow); in _mesa_unpack_image()
1578 const GLubyte *srcPtr = in _mesa_unpack_color_index_to_rgba_float()
1579 (const GLubyte *) _mesa_image_address(dims, srcPacking, src, in _mesa_unpack_color_index_to_rgba_float()
1605 GLubyte *
1613 GLubyte *dst; in _mesa_unpack_color_index_to_rgba_ubyte()
1623 dst = malloc(count * 4 * sizeof(GLubyte)); in _mesa_unpack_color_index_to_rgba_ubyte()