Lines Matching refs:GLubyte
50 #define FLOAT_TO_UBYTE(X) ((GLubyte) (GLint) ((X) * 255.0F))
122 #define BYTE_TO_UBYTE(b) ((GLubyte) ((b) < 0 ? 0 : (GLubyte) (b)))
123 #define SHORT_TO_UBYTE(s) ((GLubyte) ((s) < 0 ? 0 : (GLubyte) ((s) >> 7)))
124 #define USHORT_TO_UBYTE(s) ((GLubyte) ((s) >> 8))
125 #define INT_TO_UBYTE(i) ((GLubyte) ((i) < 0 ? 0 : (GLubyte) ((i) >> 23)))
126 #define UINT_TO_UBYTE(i) ((GLubyte) ((i) >> 24))
155 UB = (GLubyte) 0; \
157 UB = (GLubyte) 255; \
160 UB = (GLubyte) __tmp.i; \
167 UB = (GLubyte) __tmp.i; \
171 ub = ((GLubyte) _mesa_lroundevenf(CLAMP((f), 0.0F, 1.0F) * 255.0F))
173 ub = ((GLubyte) _mesa_lroundevenf((f) * 255.0F))
223 #define STRIDE_F(p, i) (p = (GLfloat *)((GLubyte *)p + i))
225 #define STRIDE_UI(p, i) (p = (GLuint *)((GLubyte *)p + i))
227 #define STRIDE_4UB(p, i) (p = (GLubyte (*)[4])((GLubyte *)p + i))
229 #define STRIDE_4F(p, i) (p = (GLfloat (*)[4])((GLubyte *)p + i))
231 #define STRIDE_T(p, t, i) (p = (t)((GLubyte *)p + i))
249 TEST_EQ_4UBV(const GLubyte a[4], const GLubyte b[4]) in TEST_EQ_4UBV()
270 COPY_4UBV(GLubyte dst[4], const GLubyte src[4]) in COPY_4UBV()