Searched defs:attribNum (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/
H A DContext.cpp804 void Context::setEnableVertexAttribArray(unsigned int attribNum, bool enabled) argument
806 getCurrentVertexArray()->enableAttribute(attribNum, enabled);
809 const VertexAttribute &Context::getVertexAttribState(unsigned int attribNum) const
811 return getCurrentVertexArray()->getVertexAttribute(attribNum);
814 const VertexAttribCurrentValueData &Context::getVertexAttribCurrentValue(unsigned int attribNum) const
816 ASSERT(attribNum < MAX_VERTEX_ATTRIBS);
817 return mState.vertexAttribCurrentValues[attribNum];
820 void Context::setVertexAttribState(unsigned int attribNum, Buffer *boundBuffer, GLint size, GLenum type, bool normalized,
823 getCurrentVertexArray()->setAttributeState(attribNum, boundBuffer, size, type, normalized, pureInteger, stride, pointer);
826 const void *Context::getVertexAttribPointer(unsigned int attribNum) cons
[all...]

Completed in 66 milliseconds