/sdk/emulator/opengl/host/libs/Translator/GLES_V2/ |
GLESv2Context.cpp | 95 GLenum array_id = (*it).first; local 97 if(!isArrEnabled(array_id)) continue; 101 if(needConvert(cArrs,first,count,type,indices,direct,p,array_id)){ 104 setupArr(currentArr.data,array_id,currentArr.type,size,currentArr.stride, p->getNormalized()); 107 setupArr(p->getData(),array_id,p->getType(), 119 bool GLESv2Context::needConvert(GLESConversionArrays& cArrs,GLint first,GLsizei count,GLenum type,const GLvoid* indices,bool direct,GLESpointer* p,GLenum array_id) { 131 convertDirect(cArrs,first,count,array_id,p); 133 convertIndirect(cArrs,count,type,indices,array_id,p); 137 convertDirectVBO(cArrs,first,count,array_id,p) ; 139 convertIndirectVBO(cArrs,count,type,indices,array_id,p) [all...] |
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/ |
GLEScmContext.cpp | 92 void GLEScmContext::setupArrayPointerHelper(GLESConversionArrays& cArrs,GLint first,GLsizei count,GLenum type,const GLvoid* indices,bool direct,GLenum array_id,GLESpointer* p){ 96 if(needConvert(cArrs,first,count,type,indices,direct,p,array_id)){ 99 setupArr(currentArr.data,array_id,currentArr.type,size,currentArr.stride,GL_FALSE, cArrs.getCurrentIndex()); 102 setupArr(p->getData(),array_id,dataType,size,p->getStride(), GL_FALSE); 113 GLenum array_id = (*it).first; local 115 if(!isArrEnabled(array_id)) continue; 116 if(array_id == GL_TEXTURE_COORD_ARRAY) continue; //handling textures later 117 setupArrayPointerHelper(cArrs,first,count,type,indices,direct,array_id,p); 133 GLenum array_id = GL_TEXTURE_COORD_ARRAY; local 134 GLESpointer* p = m_map[array_id]; [all...] |
/art/runtime/jdwp/ |
jdwp_handler.cc | 1188 ObjectId array_id = request.ReadArrayId(); local 1207 ObjectId array_id = request.ReadArrayId(); local 1218 ObjectId array_id = request.ReadArrayId(); local [all...] |
/external/chromium_org/v8/src/ |
hydrogen.cc | 8153 int array_id = Smi::cast(*value)->value(); local [all...] |