Lines Matching refs:attribNum
881 void Context::setVertexAttribArrayEnabled(unsigned int attribNum, bool enabled) in setVertexAttribArrayEnabled() argument
883 mState.vertexAttribute[attribNum].mArrayEnabled = enabled; in setVertexAttribArrayEnabled()
886 const VertexAttribute &Context::getVertexAttribState(unsigned int attribNum) in getVertexAttribState() argument
888 return mState.vertexAttribute[attribNum]; in getVertexAttribState()
891 void Context::setVertexAttribState(unsigned int attribNum, Buffer *boundBuffer, GLint size, GLenum … in setVertexAttribState() argument
894 mState.vertexAttribute[attribNum].mBoundBuffer = boundBuffer; in setVertexAttribState()
895 mState.vertexAttribute[attribNum].mSize = size; in setVertexAttribState()
896 mState.vertexAttribute[attribNum].mType = type; in setVertexAttribState()
897 mState.vertexAttribute[attribNum].mNormalized = normalized; in setVertexAttribState()
898 mState.vertexAttribute[attribNum].mStride = stride; in setVertexAttribState()
899 mState.vertexAttribute[attribNum].mPointer = pointer; in setVertexAttribState()
902 const void *Context::getVertexAttribPointer(unsigned int attribNum) const in getVertexAttribPointer()
904 return mState.vertexAttribute[attribNum].mPointer; in getVertexAttribPointer()