• Home
  • Raw
  • Download

Lines Matching refs:coords

846 TAG(TexCoordP1ui)(GLenum type, GLuint coords)  in TAG()
849 ATTR_UI(1, type, 0, VBO_ATTRIB_TEX0, coords); in TAG()
853 TAG(TexCoordP1uiv)(GLenum type, const GLuint *coords) in TAG()
856 ATTR_UI(1, type, 0, VBO_ATTRIB_TEX0, coords[0]); in TAG()
860 TAG(TexCoordP2ui)(GLenum type, GLuint coords) in TAG()
863 ATTR_UI(2, type, 0, VBO_ATTRIB_TEX0, coords); in TAG()
867 TAG(TexCoordP2uiv)(GLenum type, const GLuint *coords) in TAG()
870 ATTR_UI(2, type, 0, VBO_ATTRIB_TEX0, coords[0]); in TAG()
874 TAG(TexCoordP3ui)(GLenum type, GLuint coords) in TAG()
877 ATTR_UI(3, type, 0, VBO_ATTRIB_TEX0, coords); in TAG()
881 TAG(TexCoordP3uiv)(GLenum type, const GLuint *coords) in TAG()
884 ATTR_UI(3, type, 0, VBO_ATTRIB_TEX0, coords[0]); in TAG()
888 TAG(TexCoordP4ui)(GLenum type, GLuint coords) in TAG()
891 ATTR_UI(4, type, 0, VBO_ATTRIB_TEX0, coords); in TAG()
895 TAG(TexCoordP4uiv)(GLenum type, const GLuint *coords) in TAG()
898 ATTR_UI(4, type, 0, VBO_ATTRIB_TEX0, coords[0]); in TAG()
902 TAG(MultiTexCoordP1ui)(GLenum target, GLenum type, GLuint coords) in TAG()
906 ATTR_UI(1, type, 0, attr, coords); in TAG()
910 TAG(MultiTexCoordP1uiv)(GLenum target, GLenum type, const GLuint *coords) in TAG()
914 ATTR_UI(1, type, 0, attr, coords[0]); in TAG()
918 TAG(MultiTexCoordP2ui)(GLenum target, GLenum type, GLuint coords) in TAG()
922 ATTR_UI(2, type, 0, attr, coords); in TAG()
926 TAG(MultiTexCoordP2uiv)(GLenum target, GLenum type, const GLuint *coords) in TAG()
930 ATTR_UI(2, type, 0, attr, coords[0]); in TAG()
934 TAG(MultiTexCoordP3ui)(GLenum target, GLenum type, GLuint coords) in TAG()
938 ATTR_UI(3, type, 0, attr, coords); in TAG()
942 TAG(MultiTexCoordP3uiv)(GLenum target, GLenum type, const GLuint *coords) in TAG()
946 ATTR_UI(3, type, 0, attr, coords[0]); in TAG()
950 TAG(MultiTexCoordP4ui)(GLenum target, GLenum type, GLuint coords) in TAG()
954 ATTR_UI(4, type, 0, attr, coords); in TAG()
958 TAG(MultiTexCoordP4uiv)(GLenum target, GLenum type, const GLuint *coords) in TAG()
962 ATTR_UI(4, type, 0, attr, coords[0]); in TAG()
966 TAG(NormalP3ui)(GLenum type, GLuint coords) in TAG()
969 ATTR_UI(3, type, 1, VBO_ATTRIB_NORMAL, coords); in TAG()
973 TAG(NormalP3uiv)(GLenum type, const GLuint *coords) in TAG()
976 ATTR_UI(3, type, 1, VBO_ATTRIB_NORMAL, coords[0]); in TAG()