Home
last modified time | relevance | path

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

/hardware/google/gfxstream/host/gl/glestranslator/include/GLcommon/
DGLEScontext.h313 static GLSupport* getCapsGlobal(){return &s_glSupport;}; in getCapsGlobal()
315 return s_glSupport.ext_GL_EXT_memory_object && in vulkanInteropSupported()
316 s_glSupport.ext_GL_EXT_semaphore; in vulkanInteropSupported()
319 return s_glSupport.ext_GL_EXT_shader_framebuffer_fetch; in shaderFramebufferFetchSupported()
429 static int getMaxLights(){return s_glSupport.maxLights;} in getMaxLights()
430 static int getMaxClipPlanes(){return s_glSupport.maxClipPlane;} in getMaxClipPlanes()
431 static int getMaxTexSize(){return s_glSupport.maxTexSize;} in getMaxTexSize()
432 static Version glslVersion(){return s_glSupport.glslVersion;} in glslVersion()
433 static bool isAutoMipmapSupported(){return s_glSupport.GL_SGIS_GENERATE_MIPMAP;} in isAutoMipmapSupported()
633 static GLSupport s_glSupport; variable
/hardware/google/gfxstream/host/gl/glestranslator/GLES_V2/
DGLESv2Context.h41 return &s_glSupport; in getCaps()
DGLESv2Context.cpp812 m_nativeTextureDecompressionEnabled, s_glSupport); in initExtensionString()
813 InitExtensionString(s_glSupport, *s_glExtensions); in initExtensionString()
/hardware/google/gfxstream/host/gl/glestranslator/GLcommon/
DGLEScontext.cpp193 GLSupport GLEScontext::s_glSupport; member in GLEScontext
318 for (int i = 0; i < s_glSupport.maxVertexAttribs; i++) { in addVertexArrayObject()
325 …m_vaoStateMap[array] = VAOState(0, map, std::max(s_glSupport.maxVertexAttribs, s_glSupport.maxVert… in addVertexArrayObject()