Lines Matching defs:values
161 * Copy the active vertex's values to the ctx->Current fields.
245 * zero and one values.
1034 _es_VertexAttrib1fvARB(GLuint indx, const GLfloat* values)
1036 VertexAttrib4f_nopos(indx, values[0], 0.0f, 0.0f, 1.0f);
1048 _es_VertexAttrib2fvARB(GLuint indx, const GLfloat* values)
1050 VertexAttrib4f_nopos(indx, values[0], values[1], 0.0f, 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]);