Lines Matching defs:normalized
162 #define ATTR_UI(ctx, val, type, normalized, attr, arg) do { \
164 if (normalized) { \
170 if (normalized) { \
184 #define ATTR_UI_INDEX(ctx, val, type, normalized, index, arg) do { \
186 ATTR_UI(ctx, val, (type), normalized, 0, (arg)); \
188 ATTR_UI(ctx, val, (type), normalized, VBO_ATTRIB_GENERIC0 + (index), (arg)); \
646 TAG(VertexAttribP1ui)(GLuint index, GLenum type, GLboolean normalized,
651 ATTR_UI_INDEX(ctx, 1, type, normalized, index, value);
655 TAG(VertexAttribP2ui)(GLuint index, GLenum type, GLboolean normalized,
660 ATTR_UI_INDEX(ctx, 2, type, normalized, index, value);
664 TAG(VertexAttribP3ui)(GLuint index, GLenum type, GLboolean normalized,
669 ATTR_UI_INDEX(ctx, 3, type, normalized, index, value);
673 TAG(VertexAttribP4ui)(GLuint index, GLenum type, GLboolean normalized,
678 ATTR_UI_INDEX(ctx, 4, type, normalized, index, value);
682 TAG(VertexAttribP1uiv)(GLuint index, GLenum type, GLboolean normalized,
687 ATTR_UI_INDEX(ctx, 1, type, normalized, index, *value);
691 TAG(VertexAttribP2uiv)(GLuint index, GLenum type, GLboolean normalized,
696 ATTR_UI_INDEX(ctx, 2, type, normalized, index, *value);
700 TAG(VertexAttribP3uiv)(GLuint index, GLenum type, GLboolean normalized,
705 ATTR_UI_INDEX(ctx, 3, type, normalized, index, *value);
709 TAG(VertexAttribP4uiv)(GLuint index, GLenum type, GLboolean normalized,
714 ATTR_UI_INDEX(ctx, 4, type, normalized, index, *value);