Home | History | Annotate | Download | only in vbo

Lines Matching full:indx

1414 _es_VertexAttrib1f(GLuint indx, GLfloat x)
1416 VertexAttrib4f_nopos(indx, x, 0.0f, 0.0f, 1.0f);
1421 _es_VertexAttrib1fv(GLuint indx, const GLfloat* values)
1423 VertexAttrib4f_nopos(indx, values[0], 0.0f, 0.0f, 1.0f);
1428 _es_VertexAttrib2f(GLuint indx, GLfloat x, GLfloat y)
1430 VertexAttrib4f_nopos(indx, x, y, 0.0f, 1.0f);
1435 _es_VertexAttrib2fv(GLuint indx, const GLfloat* values)
1437 VertexAttrib4f_nopos(indx, values[0], values[1], 0.0f, 1.0f);
1442 _es_VertexAttrib3f(GLuint indx, GLfloat x, GLfloat y, GLfloat z)
1444 VertexAttrib4f_nopos(indx, x, y, z, 1.0f);
1449 _es_VertexAttrib3fv(GLuint indx, const GLfloat* values)
1451 VertexAttrib4f_nopos(indx, values[0], values[1], values[2], 1.0f);
1456 _es_VertexAttrib4fv(GLuint indx, const GLfloat* values)
1458 VertexAttrib4f_nopos(indx, values[0], values[1], values[2], values[3]);