HomeSort by relevance Sort by last modified time
    Searched refs:arrType (Results 1 - 5 of 5) sorted by null

  /development/tools/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmContext.cpp 216 GLenum arrType = p->getType();
222 if((arrType != GL_FIXED) && (arrType != GL_BYTE)) return false;
223 if((arrType == GL_BYTE && (array_id != GL_VERTEX_ARRAY)) &&
224 (arrType == GL_BYTE && (array_id != GL_TEXTURE_COORD_ARRAY)) ) return false;
227 bool byteVBO = (arrType == GL_BYTE) && usingVBO;
248 const GLESpointer* GLEScmContext::getPointer(GLenum arrType) {
250 arrType == GL_VERTEX_ARRAY_POINTER ? GL_VERTEX_ARRAY :
251 arrType == GL_NORMAL_ARRAY_POINTER ? GL_NORMAL_ARRAY :
252 arrType == GL_TEXTURE_COORD_ARRAY_POINTER ? GL_TEXTURE_COORD_ARRAY
    [all...]
GLEScmContext.h 44 virtual const GLESpointer* getPointer(GLenum arrType);
  /development/tools/emulator/opengl/host/libs/Translator/GLES_V2/
GLESv2Context.cpp 117 GLenum arrType = p->getType();
122 if(arrType != GL_FIXED) return false;
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
GLEScontext.h 121 const GLvoid* setPointer(GLenum arrType,GLint size,GLenum type,GLsizei stride,const GLvoid* data,bool normalize = false);
122 virtual const GLESpointer* getPointer(GLenum arrType);
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
GLEScontext.cpp 172 const GLvoid* GLEScontext::setPointer(GLenum arrType,GLint size,GLenum type,GLsizei stride,const GLvoid* data,bool normalize) {
177 m_map[arrType]->setBuffer(size,type,stride,vbo,bufferName,offset,normalize);
180 m_map[arrType]->setArray(size,type,stride,data,normalize);
192 const GLESpointer* GLEScontext::getPointer(GLenum arrType) {
193 if (m_map.find(arrType) != m_map.end()) return m_map[arrType];

Completed in 125 milliseconds