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

/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DContext.cpp738 void Context::setEnableVertexAttribArray(unsigned int attribNum, bool enabled) argument
740 mState.vertexAttribute[attribNum].mArrayEnabled = enabled;
743 const VertexAttribute &Context::getVertexAttribState(unsigned int attribNum) argument
745 return mState.vertexAttribute[attribNum];
748 void Context::setVertexAttribState(unsigned int attribNum, Buffer *boundBuffer, GLint size, GLenum type, bool normalized, argument
751 mState.vertexAttribute[attribNum].mBoundBuffer.set(boundBuffer);
752 mState.vertexAttribute[attribNum].mSize = size;
753 mState.vertexAttribute[attribNum].mType = type;
754 mState.vertexAttribute[attribNum].mNormalized = normalized;
755 mState.vertexAttribute[attribNum]
[all...]

Completed in 37 milliseconds