/external/deqp/framework/opengl/ |
D | gluRenderConfig.cpp | 31 void parseConfigBitsFromName (RenderConfig* config, const char* renderCfgName) in parseConfigBitsFromName() 35 DE_ASSERT(config->redBits == RenderConfig::DONT_CARE && in parseConfigBitsFromName() 36 config->greenBits == RenderConfig::DONT_CARE && in parseConfigBitsFromName() 37 config->blueBits == RenderConfig::DONT_CARE && in parseConfigBitsFromName() 38 config->alphaBits == RenderConfig::DONT_CARE && in parseConfigBitsFromName() 39 config->depthBits == RenderConfig::DONT_CARE && in parseConfigBitsFromName() 40 config->stencilBits == RenderConfig::DONT_CARE && in parseConfigBitsFromName() 41 config->numSamples == RenderConfig::DONT_CARE); in parseConfigBitsFromName() 143 void parseRenderConfig (RenderConfig* config, const tcu::CommandLine& cmdLine) in parseRenderConfig() 147 …case tcu::SURFACETYPE_WINDOW: config->surfaceType = RenderConfig::SURFACETYPE_WINDOW; break; in parseRenderConfig() [all …]
|
D | gluFboRenderContext.cpp | 78 deUint32 chooseColorFormat (const glu::RenderConfig& config) in chooseColorFormat() 97 if (config.redBits != glu::RenderConfig::DONT_CARE && in chooseColorFormat() 101 if (config.greenBits != glu::RenderConfig::DONT_CARE && in chooseColorFormat() 105 if (config.blueBits != glu::RenderConfig::DONT_CARE && in chooseColorFormat() 109 if (config.alphaBits != glu::RenderConfig::DONT_CARE && in chooseColorFormat() 119 deUint32 chooseDepthStencilFormat (const glu::RenderConfig& config) in chooseDepthStencilFormat() 138 if (config.depthBits != glu::RenderConfig::DONT_CARE && in chooseDepthStencilFormat() 142 if (config.stencilBits != glu::RenderConfig::DONT_CARE && in chooseDepthStencilFormat() 152 FboRenderContext::FboRenderContext (RenderContext* context, const RenderConfig& config) in FboRenderContext() 170 FboRenderContext::FboRenderContext (const ContextFactory& factory, const RenderConfig& config, cons… in FboRenderContext() [all …]
|
D | gluRenderConfig.hpp | 49 struct RenderConfig struct 94 RenderConfig (ContextType type_ = ContextType()) in RenderConfig() function 115 void parseRenderConfig (RenderConfig* config, const tcu::CommandLine& cmdLine); 116 RenderConfig::Visibility parseWindowVisibility (const tcu::CommandLine& cmdLine); 119 T getValueOrDefault (const RenderConfig& config, const T RenderConfig::*field, T defaultValue) in getValueOrDefault() 122 return value == (T)RenderConfig::DONT_CARE ? defaultValue : value; in getValueOrDefault()
|
D | gluFboRenderContext.hpp | 39 struct RenderConfig; 47 FboRenderContext (RenderContext* context, const RenderConfig& config); 48 …FboRenderContext (const ContextFactory& factory, const RenderConfig& config, const tcu::CommandLi… 62 void createFramebuffer (const RenderConfig& config); 73 deUint32 chooseColorFormat (const RenderConfig& config); 74 deUint32 chooseDepthStencilFormat (const RenderConfig& config);
|
D | gluContextFactory.hpp | 65 …virtual RenderContext* createContext (const RenderConfig& config, const tcu::CommandLine& cmdLine…
|
D | gluRenderContext.hpp | 49 struct RenderConfig; 235 …t (tcu::Platform& platform, const tcu::CommandLine& cmdLine, const RenderConfig& config, const …
|
/external/deqp/framework/platform/lnx/X11/ |
D | tcuLnxX11GlxPlatform.cpp | 56 using glu::RenderConfig; 66 typedef RenderConfig::Visibility Visibility; 85 RenderContext* createContext (const RenderConfig& config, 157 GlxWindow (GlxVisual& visual, const RenderConfig& cfg); 176 const RenderConfig& config, 223 RenderContext* GlxContextFactory::createContext (const RenderConfig& config, in createContext() 435 GlxWindow::GlxWindow (GlxVisual& visual, const RenderConfig& cfg) in GlxWindow() 441 m_x11Window.setVisibility(cfg.windowVisibility != RenderConfig::VISIBILITY_HIDDEN); in GlxWindow() 464 int RenderConfig::* cfgMember; 467 { GLX_RED_SIZE, &RenderConfig::redBits }, [all …]
|
/external/deqp/framework/egl/ |
D | egluGLUtil.cpp | 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() [all …]
|
D | egluGLContextFactory.cpp | 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() [all …]
|
D | egluGLContextFactory.hpp | 52 …virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::Command…
|
/external/deqp/framework/platform/win32/ |
D | tcuWGLContextFactory.cpp | 68 …tance, const wgl::Core& wglCore, const WGLContext* sharedContext, const glu::RenderConfig& config); 93 …stance, const wgl::Core& wglCore, const WGLContext* sharedContext, const glu::RenderConfig& config) in WGLContext() 96 config.width != glu::RenderConfig::DONT_CARE ? config.width : DEFAULT_WINDOW_WIDTH, in WGLContext() 97 config.height != glu::RenderConfig::DONT_CARE ? config.height : DEFAULT_WINDOW_HEIGHT) in WGLContext() 100 if (config.surfaceType != glu::RenderConfig::SURFACETYPE_WINDOW && in WGLContext() 101 config.surfaceType != glu::RenderConfig::SURFACETYPE_DONT_CARE) in WGLContext() 107 if (config.id != glu::RenderConfig::DONT_CARE) in WGLContext() 138 if (config.windowVisibility != glu::RenderConfig::VISIBILITY_VISIBLE && in WGLContext() 139 config.windowVisibility != glu::RenderConfig::VISIBILITY_HIDDEN) in WGLContext() 142 m_window.setVisible(config.windowVisibility != glu::RenderConfig::VISIBILITY_HIDDEN); in WGLContext() [all …]
|
D | tcuWGL.cpp | 592 int choosePixelFormat (const Core& wgl, HDC deviceCtx, const glu::RenderConfig& config) in choosePixelFormat() 604 if (config.redBits != glu::RenderConfig::DONT_CARE && in choosePixelFormat() 608 if (config.greenBits != glu::RenderConfig::DONT_CARE && in choosePixelFormat() 612 if (config.blueBits != glu::RenderConfig::DONT_CARE && in choosePixelFormat() 616 if (config.alphaBits != glu::RenderConfig::DONT_CARE && in choosePixelFormat() 620 if (config.depthBits != glu::RenderConfig::DONT_CARE && in choosePixelFormat() 624 if (config.stencilBits != glu::RenderConfig::DONT_CARE && in choosePixelFormat() 628 if (config.numSamples != glu::RenderConfig::DONT_CARE && in choosePixelFormat()
|
D | tcuWGL.hpp | 36 struct RenderConfig; 224 int choosePixelFormat (const Core& wgl, HDC deviceCtx, const glu::RenderConfig& config);
|
D | tcuWGLContextFactory.hpp | 39 …virtual glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine…
|
/external/deqp/framework/platform/surfaceless/ |
D | tcuSurfacelessPlatform.cpp | 202 …glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& cmdLi… 208 EglRenderContext(const glu::RenderConfig& config, const tcu::CommandLine& cmdLine); 235 glu::RenderContext* ContextFactory::createContext(const glu::RenderConfig& config, const tcu::Comma… in createContext() 240 EglRenderContext::EglRenderContext(const glu::RenderConfig& config, const tcu::CommandLine& cmdLine) in EglRenderContext() 295 case glu::RenderConfig::SURFACETYPE_DONT_CARE: in EglRenderContext() 298 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_NATIVE: in EglRenderContext() 300 case glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC: in EglRenderContext() 307 case glu::RenderConfig::SURFACETYPE_WINDOW: in EglRenderContext() 309 case glu::RenderConfig::SURFACETYPE_LAST: in EglRenderContext() 343 case glu::RenderConfig::SURFACETYPE_DONT_CARE: in EglRenderContext() [all …]
|
/external/deqp/framework/platform/ios/ |
D | tcuIOSPlatform.mm | 74 glu::RenderContext* ContextFactory::createContext (const glu::RenderConfig& config, const tcu::Comm… 80 if (config.surfaceType == glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC) 82 else if (config.surfaceType == glu::RenderConfig::SURFACETYPE_WINDOW) 162 NSString* chooseLayerColorFormat (const glu::RenderConfig& config) 164 const bool cr = config.redBits != glu::RenderConfig::DONT_CARE; 165 const bool cg = config.greenBits != glu::RenderConfig::DONT_CARE; 166 const bool cb = config.blueBits != glu::RenderConfig::DONT_CARE; 167 const bool ca = config.alphaBits != glu::RenderConfig::DONT_CARE; 186 ScreenContext::ScreenContext (ScreenManager* screenManager, const glu::RenderConfig& config) 211 void ScreenContext::createFramebuffer (const glu::RenderConfig& config)
|
D | tcuIOSPlatform.hh | 68 …glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine& c… 109 ScreenContext (ScreenManager* screenManager, const glu::RenderConfig& config); 117 void createFramebuffer (const glu::RenderConfig& config);
|
/external/deqp/framework/platform/null/ |
D | tcuNullRenderContext.cpp | 739 static tcu::RenderTarget toRenderTarget (const RenderConfig& renderCfg) in toRenderTarget() 741 const int width = getValueOrDefault(renderCfg, &RenderConfig::width, 256); in toRenderTarget() 742 const int height = getValueOrDefault(renderCfg, &RenderConfig::height, 256); in toRenderTarget() 743 const int redBits = getValueOrDefault(renderCfg, &RenderConfig::redBits, 8); in toRenderTarget() 744 const int greenBits = getValueOrDefault(renderCfg, &RenderConfig::greenBits, 8); in toRenderTarget() 745 const int blueBits = getValueOrDefault(renderCfg, &RenderConfig::blueBits, 8); in toRenderTarget() 746 const int alphaBits = getValueOrDefault(renderCfg, &RenderConfig::alphaBits, 8); in toRenderTarget() 747 const int depthBits = getValueOrDefault(renderCfg, &RenderConfig::depthBits, 24); in toRenderTarget() 748 const int stencilBits = getValueOrDefault(renderCfg, &RenderConfig::stencilBits, 8); in toRenderTarget() 749 const int numSamples = getValueOrDefault(renderCfg, &RenderConfig::numSamples, 0); in toRenderTarget() [all …]
|
D | tcuNullRenderContext.hpp | 35 struct RenderConfig; 56 RenderContext (const glu::RenderConfig& config);
|
D | tcuNullContextFactory.hpp | 38 …glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine&, con…
|
D | tcuNullContextFactory.cpp | 37 glu::RenderContext* NullGLContextFactory::createContext (const glu::RenderConfig& config, const tcu… in createContext()
|
/external/deqp/framework/platform/osx/ |
D | tcuOSXPlatform.cpp | 54 CGLRenderContext (const glu::RenderConfig& config); 77 …glu::RenderContext* createContext (const glu::RenderConfig& config, const tcu::CommandLine&, const… in createContext() 159 CGLRenderContext::CGLRenderContext (const glu::RenderConfig& config) in CGLRenderContext()
|
/external/deqp/framework/platform/android/ |
D | tcuAndroidPlatformCapabilityQueryJNI.cpp | 102 glu::RenderConfig parseRenderConfig (const std::string& argsStr) in parseRenderConfig() 115 glu::RenderConfig renderConfig (testContextType); in parseRenderConfig() 125 const glu::RenderConfig renderConfig = parseRenderConfig(cmdLineStr); in isRenderConfigSupported()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcContext.cpp | 54 …glu::RenderConfig renderCfg(glu::ContextType(contextType.getAPI(), contextType.getFlags() | ctxFla… in createRenderContext() 62 renderCfg.surfaceType = glu::RenderConfig::SURFACETYPE_OFFSCREEN_GENERIC; in createRenderContext()
|
/external/deqp/framework/platform/lnx/wayland/ |
D | tcuLnxWayland.cpp | 166 if (width == glu::RenderConfig::DONT_CARE) in Window() 168 if (height == glu::RenderConfig::DONT_CARE) in Window()
|