Lines Matching refs:values
5419 void __stdcall glVertexAttrib1fv(GLuint index, const GLfloat* values)
5421 TRACE("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
5434 GLfloat vals[4] = { values[0], 0, 0, 1 };
5469 void __stdcall glVertexAttrib2fv(GLuint index, const GLfloat* values)
5471 TRACE("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
5484 GLfloat vals[4] = { values[0], values[1], 0, 1 };
5519 void __stdcall glVertexAttrib3fv(GLuint index, const GLfloat* values)
5521 TRACE("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
5534 GLfloat vals[4] = { values[0], values[1], values[2], 1 };
5569 void __stdcall glVertexAttrib4fv(GLuint index, const GLfloat* values)
5571 TRACE("(GLuint index = %d, const GLfloat* values = 0x%0.8p)", index, values);
5584 context->setVertexAttrib(index, values);