Home
last modified time | relevance | path

Searched refs:getConfAttrib (Results 1 – 5 of 5) sorted by relevance

/hardware/google/gfxstream/host/gl/glestranslator/EGL/
DEglDisplay.cpp109 EGLint wantedRVal = wantedAttribs.getConfAttrib(EGL_RED_SIZE); in DynamicCompare()
110 EGLint wantedGVal = wantedAttribs.getConfAttrib(EGL_GREEN_SIZE); in DynamicCompare()
111 EGLint wantedBVal = wantedAttribs.getConfAttrib(EGL_BLUE_SIZE); in DynamicCompare()
112 EGLint wantedLVal = wantedAttribs.getConfAttrib(EGL_LUMINANCE_SIZE); in DynamicCompare()
113 EGLint wantedAVal = wantedAttribs.getConfAttrib(EGL_ALPHA_SIZE); in DynamicCompare()
123 EGLint aConformant = a->getConfAttrib(EGL_CONFORMANT); in operator ()()
124 EGLint bConformant = b->getConfAttrib(EGL_CONFORMANT); in operator ()()
130 EGLint aCaveat = a->getConfAttrib(EGL_CONFIG_CAVEAT); in operator ()()
131 EGLint bCaveat = b->getConfAttrib(EGL_CONFIG_CAVEAT); in operator ()()
136 EGLint aCbType = a->getConfAttrib(EGL_COLOR_BUFFER_TYPE); in operator ()()
[all …]
DEglPbufferSurface.cpp72 *val = m_config->getConfAttrib(attrib); in getAttrib()
DEglConfig.h49 bool getConfAttrib(EGLint attrib, EGLint* val) const;
50 EGLint getConfAttrib(EGLint attrib) const;
DEglConfig.cpp226 bool EglConfig::getConfAttrib(EGLint attrib,EGLint* val) const { in getConfAttrib() function in EglConfig
333 EGLint EglConfig::getConfAttrib(EGLint attrib) const { in getConfAttrib() function in EglConfig
335 getConfAttrib(attrib, &res); in getConfAttrib()
DEglImp.cpp770 return cfg->getConfAttrib(attribute,value)? EGL_TRUE:EGL_FALSE; in eglGetConfigAttrib()