/device/generic/opengl-transport/host/libs/virglrenderer/OpenGLESDispatch/ |
D | gles31_only.entries | 69 void glVertexAttribFormat(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint… 70 void glVertexAttribIFormat(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset); 71 void glVertexAttribBinding(GLuint attribindex, GLuint bindingindex);
|
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/ |
D | GLClientState.cpp | 173 const GLClientState::BufferBinding& GLClientState::getCurrAttributeBindingInfo(int attribindex) { in getCurrAttributeBindingInfo() argument 174 return m_currVaoState.bufferBindings_const()[m_currVaoState[attribindex].bindingindex]; in getCurrAttributeBindingInfo() 177 void GLClientState::setVertexAttribBinding(int attribindex, int bindingindex) { in setVertexAttribBinding() argument 178 m_currVaoState[attribindex].bindingindex = bindingindex; in setVertexAttribBinding() 179 m_currVaoState.bufferBinding(bindingindex).vertexAttribLoc = attribindex; in setVertexAttribBinding() 180 m_vaoAttribBindingCacheInvalid |= (1 << attribindex); in setVertexAttribBinding()
|
D | GLClientState.h | 222 const BufferBinding& getCurrAttributeBindingInfo(int attribindex); 223 void setVertexAttribBinding(int attribindex, int bindingindex);
|
/device/generic/goldfish-opengl/system/GLESv2_enc/ |
D | GL2Encoder.h | 742 …static void s_glVertexAttribFormat(void* self, GLuint attribindex, GLint size, GLenum type, GLbool… 743 …static void s_glVertexAttribIFormat(void* self, GLuint attribindex, GLint size, GLenum type, GLuin… 745 static void s_glVertexAttribBinding(void* self, GLuint attribindex, GLuint bindingindex);
|
D | GL2Encoder.cpp | 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() [all …]
|
D | gl2_entry.cpp | 402 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); 2843 void glVertexAttribBinding(GLuint attribindex, GLuint bindingindex) in glVertexAttribBinding() argument 2846 ctx->glVertexAttribBinding(ctx, attribindex, bindingindex); in glVertexAttribBinding() 2849 void glVertexAttribFormat(GLuint attribindex, GLint size, GLenum type, GLboolean normalized, GLuint… in glVertexAttribFormat() argument 2852 ctx->glVertexAttribFormat(ctx, attribindex, size, type, normalized, relativeoffset); in glVertexAttribFormat() 2855 void glVertexAttribIFormat(GLuint attribindex, GLint size, GLenum type, GLuint relativeoffset) in glVertexAttribIFormat() argument 2858 ctx->glVertexAttribIFormat(ctx, attribindex, size, type, relativeoffset); in glVertexAttribIFormat()
|
D | gl2_enc.cpp | 10579 void glVertexAttribBinding_enc(void *self , GLuint attribindex, GLuint bindingindex) in glVertexAttribBinding_enc() argument 10597 memcpy(ptr, &attribindex, 4); ptr += 4; in glVertexAttribBinding_enc() 10605 void glVertexAttribFormat_enc(void *self , GLuint attribindex, GLint size, GLenum type, GLboolean n… in glVertexAttribFormat_enc() argument 10623 memcpy(ptr, &attribindex, 4); ptr += 4; in glVertexAttribFormat_enc() 10634 void glVertexAttribIFormat_enc(void *self , GLuint attribindex, GLint size, GLenum type, GLuint rel… in glVertexAttribIFormat_enc() argument 10652 memcpy(ptr, &attribindex, 4); ptr += 4; in glVertexAttribIFormat_enc()
|
/device/generic/goldfish-opengl/system/include/GLES3/ |
D | gl31.h | 1174 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);
|
/device/generic/opengl-transport/host/libs/virglrenderer/GLESv3_dec/ |
D | gles3.in | 533 GL_ENTRY(void, glVertexAttribBinding, GLuint attribindex, GLuint bindingindex); 534 GL_ENTRY(void, glVertexAttribFormat, GLuint attribindex, GLint size, GLenum type, GLboolean normali… 535 GL_ENTRY(void, glVertexAttribIFormat, GLuint attribindex, GLint size, GLenum type, GLuint relativeo…
|