Lines Matching refs:RenderConfig
130 …Factory* windowFactory, const NativePixmapFactory* pixmapFactory, const glu::RenderConfig& config);
142 …Factory* windowFactory, const NativePixmapFactory* pixmapFactory, const glu::RenderConfig& config);
145 const glu::RenderConfig m_renderConfig;
162 …wFactory* windowFactory, const NativePixmapFactory* pixmapFactory, const glu::RenderConfig& config) in RenderContext()
205 static WindowParams::Visibility getNativeWindowVisibility (glu::RenderConfig::Visibility visibility) in getNativeWindowVisibility()
207 using glu::RenderConfig; in getNativeWindowVisibility()
211 case RenderConfig::VISIBILITY_HIDDEN: return WindowParams::VISIBILITY_HIDDEN; in getNativeWindowVisibility()
212 case RenderConfig::VISIBILITY_VISIBLE: return WindowParams::VISIBILITY_VISIBLE; in getNativeWindowVisibility()
213 case RenderConfig::VISIBILITY_FULLSCREEN: return WindowParams::VISIBILITY_FULLSCREEN; in getNativeWindowVisibility()
215 DE_ASSERT((int)visibility == RenderConfig::DONT_CARE); in getNativeWindowVisibility()
223 …actory* windowFactory, EGLDisplay eglDisplay, EGLConfig eglConfig, const glu::RenderConfig& config) in createWindow()
225 …const int width = (config.width == glu::RenderConfig::DONT_CARE ? WindowParams::SIZE_DONT_… in createWindow()
226 …const int height = (config.height == glu::RenderConfig::DONT_CARE ? WindowParams::SIZE_DONT… in createWindow()
247 …actory* pixmapFactory, EGLDisplay eglDisplay, EGLConfig eglConfig, const glu::RenderConfig& config) in createPixmap()
249 …const int width = (config.width == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_WIDTH : c… in createPixmap()
250 …const int height = (config.height == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_HEIGHT :… in createPixmap()
270 …ffer (const Library& egl, EGLDisplay display, EGLConfig eglConfig, const glu::RenderConfig& config) in createPBuffer()
272 …const int width = (config.width == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_WIDTH : co… in createPBuffer()
273 …const int height = (config.height == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_HEIGHT : … in createPBuffer()
288 …wFactory* windowFactory, const NativePixmapFactory* pixmapFactory, const glu::RenderConfig& config) in create()
290 glu::RenderConfig::SurfaceType surfaceType = config.surfaceType; in create()
307 if (surfaceType == glu::RenderConfig::SURFACETYPE_DONT_CARE) in create()
313 surfaceType = glu::RenderConfig::SURFACETYPE_WINDOW; in create()
315 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC; in create()
317 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE; in create()
324 case glu::RenderConfig::SURFACETYPE_WINDOW: in create()
337 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE: in create()
350 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC: in create()
558 glu::RenderContext* GLContextFactory::createContext (const glu::RenderConfig& config, const tcu::Co… in createContext()