Lines Matching refs:RenderConfig
158 …y& egl, eglw::EGLDisplay display, eglw::EGLConfig eglConfig, const glu::RenderConfig& renderConfig) in configMatches()
172 if (renderConfig.surfaceType != glu::RenderConfig::SURFACETYPE_DONT_CARE) in configMatches()
179 case glu::RenderConfig::SURFACETYPE_WINDOW: requiredSurface = EGL_WINDOW_BIT; break; in configMatches()
180 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE: requiredSurface = EGL_PIXMAP_BIT; break; in configMatches()
181 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC: requiredSurface = EGL_PBUFFER_BIT; break; in configMatches()
195 int glu::RenderConfig::*field; in configMatches()
199 { &glu::RenderConfig::id, EGL_CONFIG_ID }, in configMatches()
200 { &glu::RenderConfig::redBits, EGL_RED_SIZE }, in configMatches()
201 { &glu::RenderConfig::greenBits, EGL_GREEN_SIZE }, in configMatches()
202 { &glu::RenderConfig::blueBits, EGL_BLUE_SIZE }, in configMatches()
203 { &glu::RenderConfig::alphaBits, EGL_ALPHA_SIZE }, in configMatches()
204 { &glu::RenderConfig::depthBits, EGL_DEPTH_SIZE }, in configMatches()
205 { &glu::RenderConfig::stencilBits, EGL_STENCIL_SIZE }, in configMatches()
206 { &glu::RenderConfig::numSamples, EGL_SAMPLES }, in configMatches()
211 if (renderConfig.*s_attribs[attribNdx].field != glu::RenderConfig::DONT_CARE) in configMatches()
224 EGLConfig chooseConfig (const Library& egl, EGLDisplay display, const glu::RenderConfig& config) in chooseConfig()