Home
last modified time | relevance | path

Searched refs:maxTexSize (Results 1 – 4 of 4) sorted by relevance

/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/
DGLESvalidate.cpp187 bool GLESvalidate::texImgDim(GLsizei width,GLsizei height,int maxTexSize) { in texImgDim() argument
189 if( width < 0 || height < 0 || width > maxTexSize || height > maxTexSize) in texImgDim()
DGLEScontext.cpp1807 s_glDispatch.glGetIntegerv(GL_MAX_TEXTURE_SIZE, &glSupport.maxTexSize); in initCapsLocked()
/hardware/google/gfxstream/host/gl/glestranslator/include/GLcommon/
DGLESvalidate.h35 static bool texImgDim(GLsizei width,GLsizei height,int maxTexSize);
DGLEScontext.h75 int maxTexSize = 0; member
431 static int getMaxTexSize(){return s_glSupport.maxTexSize;} in getMaxTexSize()