Lines Matching refs:GLubyte
52 #define FLOAT_TO_UBYTE(X) ((GLubyte) (GLint) ((X) * 255.0F))
124 #define BYTE_TO_UBYTE(b) ((GLubyte) ((b) < 0 ? 0 : (GLubyte) (b)))
125 #define SHORT_TO_UBYTE(s) ((GLubyte) ((s) < 0 ? 0 : (GLubyte) ((s) >> 7)))
126 #define USHORT_TO_UBYTE(s) ((GLubyte) ((s) >> 8))
127 #define INT_TO_UBYTE(i) ((GLubyte) ((i) < 0 ? 0 : (GLubyte) ((i) >> 23)))
128 #define UINT_TO_UBYTE(i) ((GLubyte) ((i) >> 24))
157 UB = (GLubyte) 0; \
159 UB = (GLubyte) 255; \
162 UB = (GLubyte) __tmp.i; \
169 UB = (GLubyte) __tmp.i; \
173 ub = ((GLubyte) _mesa_lroundevenf(CLAMP((f), 0.0F, 1.0F) * 255.0F))
175 ub = ((GLubyte) _mesa_lroundevenf((f) * 255.0F))
249 #define STRIDE_F(p, i) (p = (GLfloat *)((GLubyte *)p + i))
251 #define STRIDE_UI(p, i) (p = (GLuint *)((GLubyte *)p + i))
253 #define STRIDE_4UB(p, i) (p = (GLubyte (*)[4])((GLubyte *)p + i))
255 #define STRIDE_4F(p, i) (p = (GLfloat (*)[4])((GLubyte *)p + i))
257 #define STRIDE_T(p, t, i) (p = (t)((GLubyte *)p + i))
275 TEST_EQ_4UBV(const GLubyte a[4], const GLubyte b[4]) in TEST_EQ_4UBV()
296 COPY_4UBV(GLubyte dst[4], const GLubyte src[4]) in COPY_4UBV()
794 #define ADD_POINTERS(A, B) ( (GLubyte *) (A) + (uintptr_t) (B) )