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

  /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/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...]

Completed in 17 milliseconds