Home
last modified time | relevance | path

Searched refs:attribindex (Results 1 – 7 of 7) sorted by relevance

/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
DGLClientState.h215 const BufferBinding& getCurrAttributeBindingInfo(int attribindex);
216 void setVertexAttribBinding(int attribindex, int bindingindex);
DGLClientState.cpp154 const GLClientState::BufferBinding& GLClientState::getCurrAttributeBindingInfo(int attribindex) { in getCurrAttributeBindingInfo() argument
155 return m_currVaoState.bufferBindings_const()[m_currVaoState[attribindex].bindingindex]; in getCurrAttributeBindingInfo()
158 void GLClientState::setVertexAttribBinding(int attribindex, int bindingindex) { in setVertexAttribBinding() argument
159 m_currVaoState[attribindex].bindingindex = bindingindex; in setVertexAttribBinding()
/device/generic/goldfish-opengl/system/GLESv2_enc/
DGL2Encoder.h654 …static void s_glVertexAttribFormat(void* self, GLuint attribindex, GLint size, GLenum type, GLbool…
655 …static void s_glVertexAttribIFormat(void* self, GLuint attribindex, GLint size, GLenum type, GLuin…
657 static void s_glVertexAttribBinding(void* self, GLuint attribindex, GLuint bindingindex);
DGL2Encoder.cpp4655 void GL2Encoder::s_glVertexAttribFormat(void* self, GLuint attribindex, GLint size, GLenum type, GL… in s_glVertexAttribFormat() argument
4659 VALIDATE_VERTEX_ATTRIB_INDEX(attribindex); in s_glVertexAttribFormat()
4662 state->setVertexAttribFormat(attribindex, size, type, normalized, relativeoffset, false); in s_glVertexAttribFormat()
4663 ctx->m_glVertexAttribFormat_enc(ctx, attribindex, size, type, normalized, relativeoffset); in s_glVertexAttribFormat()
4666 void GL2Encoder::s_glVertexAttribIFormat(void* self, GLuint attribindex, GLint size, GLenum type, G… in s_glVertexAttribIFormat() argument
4670 VALIDATE_VERTEX_ATTRIB_INDEX(attribindex); in s_glVertexAttribIFormat()
4673 state->setVertexAttribFormat(attribindex, size, type, GL_FALSE, relativeoffset, true); in s_glVertexAttribIFormat()
4674 ctx->m_glVertexAttribIFormat_enc(ctx, attribindex, size, type, relativeoffset); in s_glVertexAttribIFormat()
4687 void GL2Encoder::s_glVertexAttribBinding(void* self, GLuint attribindex, GLuint bindingindex) { in s_glVertexAttribBinding() argument
4690 VALIDATE_VERTEX_ATTRIB_INDEX(attribindex); in s_glVertexAttribBinding()
[all …]
Dgl2_entry.cpp402 void glVertexAttribBinding(GLuint attribindex, GLuint bindingindex);
403 …void glVertexAttribFormat(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuin…
404 void glVertexAttribIFormat(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset);
2828 void glVertexAttribBinding(GLuint attribindex, GLuint bindingindex) in glVertexAttribBinding() argument
2831 ctx->glVertexAttribBinding(ctx, attribindex, bindingindex); in glVertexAttribBinding()
2834 void glVertexAttribFormat(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint… in glVertexAttribFormat() argument
2837 ctx->glVertexAttribFormat(ctx, attribindex, size, type, normalized, relativeoffset); in glVertexAttribFormat()
2840 void glVertexAttribIFormat(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset) in glVertexAttribIFormat() argument
2843 ctx->glVertexAttribIFormat(ctx, attribindex, size, type, relativeoffset); in glVertexAttribIFormat()
Dgl2_enc.cpp10577 void glVertexAttribBinding_enc(void *self , GLuint attribindex, GLuint bindingindex) in glVertexAttribBinding_enc() argument
10595 memcpy(ptr, &attribindex, 4); ptr += 4; in glVertexAttribBinding_enc()
10603 void glVertexAttribFormat_enc(void *self , GLuint attribindex, GLint size, GLenum type, GLboolean n… in glVertexAttribFormat_enc() argument
10621 memcpy(ptr, &attribindex, 4); ptr += 4; in glVertexAttribFormat_enc()
10632 void glVertexAttribIFormat_enc(void *self , GLuint attribindex, GLint size, GLenum type, GLuint rel… in glVertexAttribIFormat_enc() argument
10650 memcpy(ptr, &attribindex, 4); ptr += 4; in glVertexAttribIFormat_enc()
/device/generic/goldfish-opengl/system/include/GLES3/
Dgl31.h1174 GL_APICALL void GL_APIENTRY glVertexAttribFormat (GLuint attribindex, GLint size, GLenum type, GLbo…
1175 GL_APICALL void GL_APIENTRY glVertexAttribIFormat (GLuint attribindex, GLint size, GLenum type, GLu…
1176 GL_APICALL void GL_APIENTRY glVertexAttribBinding (GLuint attribindex, GLuint bindingindex);