Lines Matching defs:config
140 Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo = 0, deUint32 colorBuffer = 0, deUint32 depthStencilBuffer = 0);
251 Framebuffer::Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo, deUint32 colorBufferName, deUint32 depthStencilBufferName)
252 : m_config (config)
259 checkColorFormatSupport(context, config.colorFormat);
404 FboRenderCase (Context& context, const char* name, const char* description, const FboConfig& config);
416 FboRenderCase::FboRenderCase (Context& context, const char* name, const char* description, const FboConfig& config)
418 , m_config (config)
518 StencilClearsTest (Context& context, const FboConfig& config);
524 StencilClearsTest::StencilClearsTest (Context& context, const FboConfig& config)
525 : FboRenderCase (context, config.getName().c_str(), "Stencil clears", config)
609 SharedColorbufferTest (Context& context, const FboConfig& config);
615 SharedColorbufferTest::SharedColorbufferTest (Context& context, const FboConfig& config)
616 : FboRenderCase (context, config.getName().c_str(), "Shared colorbuffer", config)
739 SharedColorbufferClearsTest (Context& context, const FboConfig& config);
745 SharedColorbufferClearsTest::SharedColorbufferClearsTest (Context& context, const FboConfig& config)
746 : FboRenderCase (context, config.getName().c_str(), "Shared colorbuffer clears", config)
842 SharedDepthStencilTest (Context& context, const FboConfig& config);
845 static bool isConfigSupported (const FboConfig& config);
849 SharedDepthStencilTest::SharedDepthStencilTest (Context& context, const FboConfig& config)
850 : FboRenderCase (context, config.getName().c_str(), "Shared depth/stencilbuffer", config)
854 bool SharedDepthStencilTest::isConfigSupported (const FboConfig& config)
856 return (config.buffers & (GL_DEPTH_BUFFER_BIT|GL_STENCIL_BUFFER_BIT)) != 0;
974 TexSubImageAfterRenderTest (Context& context, const FboConfig& config);
980 TexSubImageAfterRenderTest::TexSubImageAfterRenderTest (Context& context, const FboConfig& config)
981 : FboRenderCase(context, (string("after_render_") + config.getName()).c_str(), "TexSubImage after rendering to texture", config)
1029 TexSubImageBetweenRenderTest (Context& context, const FboConfig& config);
1035 TexSubImageBetweenRenderTest::TexSubImageBetweenRenderTest (Context& context, const FboConfig& config)
1036 : FboRenderCase(context, (string("between_render_") + config.getName()).c_str(), "TexSubImage between rendering calls", config)
1100 ResizeTest (Context& context, const FboConfig& config);
1106 ResizeTest::ResizeTest (Context& context, const FboConfig& config)
1107 : FboRenderCase (context, config.getName().c_str(), "Resize framebuffer", config)
1250 RecreateBuffersTest (Context& context, const FboConfig& config, deUint32 buffers, bool rebind);
1260 RecreateBuffersTest::RecreateBuffersTest (Context& context, const FboConfig& config, deUint32 buffers, bool rebind)
1261 : FboRenderCase (context, (string(config.getName()) + (rebind ? "" : "_no_rebind")).c_str(), "Recreate buffers", config)
1551 FboConfig config(GL_COLOR_BUFFER_BIT|GL_STENCIL_BUFFER_BIT, colorType, colorFmt, stencilType, depthStencilFormats[fmtNdx].format);
1552 stencilClearGroup->addChild(new StencilClearsTest(m_context, config));
1566 FboConfig config(GL_COLOR_BUFFER_BIT, objectTypes[typeNdx], colorFormats[colorFmtNdx].format, GL_NONE, GL_NONE);
1567 sharedColorbufferClearGroup->addChild(new SharedColorbufferClearsTest(m_context, config));
1616 FboConfig config(GL_COLOR_BUFFER_BIT|(depth ? GL_DEPTH_BUFFER_BIT : 0)|(stencil ? GL_STENCIL_BUFFER_BIT : 0), colorType, colorFmt, objectTypes[typeNdx], depthStencilFormats[fmtNdx].format);
1617 sharedDepthStencilGroup->addChild(new SharedDepthStencilTest(m_context, config));
1631 FboConfig config(GL_COLOR_BUFFER_BIT, objectTypes[typeNdx], colorFormat, GL_NONE, GL_NONE);
1632 resizeGroup->addChild(new ResizeTest(m_context, config));
1650 FboConfig config(GL_COLOR_BUFFER_BIT|(depth ? GL_DEPTH_BUFFER_BIT : 0)|(stencil ? GL_STENCIL_BUFFER_BIT : 0),
1653 resizeGroup->addChild(new ResizeTest(m_context, config));
1671 FboConfig config(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT|GL_STENCIL_BUFFER_BIT, objectTypes[typeNdx], colorFormat, depthStencilType, depthStencilFormat);
1672 recreateColorGroup->addChild(new RecreateBuffersTest(m_context, config, GL_COLOR_BUFFER_BIT, true /* rebind */));
1692 FboConfig config(GL_COLOR_BUFFER_BIT|(depth ? GL_DEPTH_BUFFER_BIT : 0)|(stencil ? GL_STENCIL_BUFFER_BIT : 0), colorType, colorFmt, objectTypes[typeNdx], depthStencilFormats[fmtNdx].format);
1693 recreateDepthStencilGroup->addChild(new RecreateBuffersTest(m_context, config, (depth ? GL_DEPTH_BUFFER_BIT : 0)|(stencil ? GL_STENCIL_BUFFER_BIT : 0), true /* rebind */));