Lines Matching defs:indx
1027 _es_VertexAttrib1fARB(GLuint indx, GLfloat x)
1029 VertexAttrib4f_nopos(indx, x, 0.0f, 0.0f, 1.0f);
1034 _es_VertexAttrib1fvARB(GLuint indx, const GLfloat* values)
1036 VertexAttrib4f_nopos(indx, values[0], 0.0f, 0.0f, 1.0f);
1041 _es_VertexAttrib2fARB(GLuint indx, GLfloat x, GLfloat y)
1043 VertexAttrib4f_nopos(indx, x, y, 0.0f, 1.0f);
1048 _es_VertexAttrib2fvARB(GLuint indx, const GLfloat* values)
1050 VertexAttrib4f_nopos(indx, values[0], values[1], 0.0f, 1.0f);
1055 _es_VertexAttrib3fARB(GLuint indx, GLfloat x, GLfloat y, GLfloat z)
1057 VertexAttrib4f_nopos(indx, x, y, z, 1.0f);
1062 _es_VertexAttrib3fvARB(GLuint indx, const GLfloat* values)
1064 VertexAttrib4f_nopos(indx, values[0], values[1], values[2], 1.0f);
1069 _es_VertexAttrib4fvARB(GLuint indx, const GLfloat* values)
1071 VertexAttrib4f_nopos(indx, values[0], values[1], values[2], values[3]);