Home | History | Annotate | Download | only in OpenglCodecCommon

Lines Matching defs:GLClientState

16 #include "GLClientState.h"
24 GLClientState::GLClientState(int nLocations)
59 GLClientState::~GLClientState()
64 void GLClientState::enable(int location, int state)
74 void GLClientState::setState(int location, int size, GLenum type, GLboolean normalized, GLsizei stride, const void *data)
88 void GLClientState::setBufferObject(int location, GLuint id)
97 const GLClientState::VertexAttribState * GLClientState::getState(int location)
105 const GLClientState::VertexAttribState * GLClientState::getStateAndEnableDirty(int location, bool *enableChanged)
119 int GLClientState::getLocation(GLenum loc)
151 void GLClientState::getClientStatePointer(GLenum pname, GLvoid** params)
153 const GLClientState::VertexAttribState *state = NULL;
156 state = getState(GLClientState::VERTEX_LOCATION);
160 state = getState(GLClientState::NORMAL_LOCATION);
164 state = getState(GLClientState::COLOR_LOCATION);
168 state = getState(getActiveTexture() + GLClientState::TEXCOORD0_LOCATION);
172 state = getState(GLClientState::POINTSIZE_LOCATION);
176 state = getState(GLClientState::MATRIXINDEX_LOCATION);
180 state = getState(GLClientState::WEIGHT_LOCATION);
188 int GLClientState::setPixelStore(GLenum param, GLint value)
215 size_t GLClientState::pixelDataSize(GLsizei width, GLsizei height, GLenum format, GLenum type, int pack) const