• Home
  • Raw
  • Download

Lines Matching refs:RenderConfig

133 …* windowFactory, const NativePixmapFactory* pixmapFactory, const glu::RenderConfig& config, const …
151 …* windowFactory, const NativePixmapFactory* pixmapFactory, const glu::RenderConfig& config, const …
154 const glu::RenderConfig m_renderConfig;
172 …* windowFactory, const NativePixmapFactory* pixmapFactory, const glu::RenderConfig& config, const … in RenderContext()
215 static WindowParams::Visibility getNativeWindowVisibility (glu::RenderConfig::Visibility visibility) in getNativeWindowVisibility()
217 using glu::RenderConfig; in getNativeWindowVisibility()
221 case RenderConfig::VISIBILITY_HIDDEN: return WindowParams::VISIBILITY_HIDDEN; in getNativeWindowVisibility()
222 case RenderConfig::VISIBILITY_VISIBLE: return WindowParams::VISIBILITY_VISIBLE; in getNativeWindowVisibility()
223 case RenderConfig::VISIBILITY_FULLSCREEN: return WindowParams::VISIBILITY_FULLSCREEN; in getNativeWindowVisibility()
225 DE_ASSERT((int)visibility == RenderConfig::DONT_CARE); in getNativeWindowVisibility()
233 …actory* windowFactory, EGLDisplay eglDisplay, EGLConfig eglConfig, const glu::RenderConfig& config) in createWindow()
235 …const int width = (config.width == glu::RenderConfig::DONT_CARE ? WindowParams::SIZE_DONT_… in createWindow()
236 …const int height = (config.height == glu::RenderConfig::DONT_CARE ? WindowParams::SIZE_DONT… in createWindow()
257 …actory* pixmapFactory, EGLDisplay eglDisplay, EGLConfig eglConfig, const glu::RenderConfig& config) in createPixmap()
259 …const int width = (config.width == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_WIDTH : c… in createPixmap()
260 …const int height = (config.height == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_HEIGHT :… in createPixmap()
280 …ffer (const Library& egl, EGLDisplay display, EGLConfig eglConfig, const glu::RenderConfig& config) in createPBuffer()
282 …const int width = (config.width == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_WIDTH : co… in createPBuffer()
283 …const int height = (config.height == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_HEIGHT : … in createPBuffer()
310 …* windowFactory, const NativePixmapFactory* pixmapFactory, const glu::RenderConfig& config, const … in create()
312 glu::RenderConfig::SurfaceType surfaceType = config.surfaceType; in create()
336 if (surfaceType == glu::RenderConfig::SURFACETYPE_DONT_CARE) in create()
342 surfaceType = glu::RenderConfig::SURFACETYPE_WINDOW; in create()
344 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC; in create()
346 surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE; in create()
353 case glu::RenderConfig::SURFACETYPE_WINDOW: in create()
366 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE: in create()
379 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC: in create()
600 glu::RenderContext* GLContextFactory::createContext (const glu::RenderConfig& config, const tcu::Co… in createContext()