Lines Matching refs:attribindex
5283 void GL2Encoder::s_glVertexAttribFormat(void* self, GLuint attribindex, GLint size, GLenum type, GL… in s_glVertexAttribFormat() argument
5287 VALIDATE_VERTEX_ATTRIB_INDEX(attribindex); in s_glVertexAttribFormat()
5290 state->setVertexAttribFormat(attribindex, size, type, normalized, relativeoffset, false); in s_glVertexAttribFormat()
5291 ctx->m_glVertexAttribFormat_enc(ctx, attribindex, size, type, normalized, relativeoffset); in s_glVertexAttribFormat()
5294 void GL2Encoder::s_glVertexAttribIFormat(void* self, GLuint attribindex, GLint size, GLenum type, G… in s_glVertexAttribIFormat() argument
5298 VALIDATE_VERTEX_ATTRIB_INDEX(attribindex); in s_glVertexAttribIFormat()
5301 state->setVertexAttribFormat(attribindex, size, type, GL_FALSE, relativeoffset, true); in s_glVertexAttribIFormat()
5302 ctx->m_glVertexAttribIFormat_enc(ctx, attribindex, size, type, relativeoffset); in s_glVertexAttribIFormat()
5315 void GL2Encoder::s_glVertexAttribBinding(void* self, GLuint attribindex, GLuint bindingindex) { in s_glVertexAttribBinding() argument
5318 VALIDATE_VERTEX_ATTRIB_INDEX(attribindex); in s_glVertexAttribBinding()
5321 state->setVertexAttribBinding(attribindex, bindingindex); in s_glVertexAttribBinding()
5322 ctx->m_glVertexAttribBinding_enc(ctx, attribindex, bindingindex); in s_glVertexAttribBinding()