Lines Matching refs:RenderConfig
204 …y& egl, eglw::EGLDisplay display, eglw::EGLConfig eglConfig, const glu::RenderConfig& renderConfig) in configMatches()
218 if (renderConfig.surfaceType != glu::RenderConfig::SURFACETYPE_DONT_CARE) in configMatches()
225 case glu::RenderConfig::SURFACETYPE_WINDOW: requiredSurface = EGL_WINDOW_BIT; break; in configMatches()
226 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE: requiredSurface = EGL_PIXMAP_BIT; break; in configMatches()
227 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC: requiredSurface = EGL_PBUFFER_BIT; break; in configMatches()
241 int glu::RenderConfig::*field; in configMatches()
245 { &glu::RenderConfig::id, EGL_CONFIG_ID }, in configMatches()
246 { &glu::RenderConfig::redBits, EGL_RED_SIZE }, in configMatches()
247 { &glu::RenderConfig::greenBits, EGL_GREEN_SIZE }, in configMatches()
248 { &glu::RenderConfig::blueBits, EGL_BLUE_SIZE }, in configMatches()
249 { &glu::RenderConfig::alphaBits, EGL_ALPHA_SIZE }, in configMatches()
250 { &glu::RenderConfig::depthBits, EGL_DEPTH_SIZE }, in configMatches()
251 { &glu::RenderConfig::stencilBits, EGL_STENCIL_SIZE }, in configMatches()
252 { &glu::RenderConfig::numSamples, EGL_SAMPLES }, in configMatches()
257 if (renderConfig.*s_attribs[attribNdx].field != glu::RenderConfig::DONT_CARE) in configMatches()
270 EGLConfig chooseConfig (const Library& egl, EGLDisplay display, const glu::RenderConfig& config) in chooseConfig()