Lines Matching defs:FboConfig
66 class FboConfig
69 FboConfig (deUint32 buffers_, deUint32 colorType_, deUint32 colorFormat_, deUint32 depthStencilType_, deUint32 depthStencilFormat_, int width_ = 0, int height_ = 0, int samples_ = 0)
81 FboConfig (void)
119 std::string FboConfig::getName (void) const
140 Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo = 0, deUint32 colorBuffer = 0, deUint32 depthStencilBuffer = 0);
143 const FboConfig& getConfig (void) const { return m_config; }
155 FboConfig m_config;
251 Framebuffer::Framebuffer (sglr::Context& context, const FboConfig& config, int width, int height, deUint32 fbo, deUint32 colorBufferName, deUint32 depthStencilBufferName)
404 FboRenderCase (Context& context, const char* name, const char* description, const FboConfig& config);
413 const FboConfig m_config;
416 FboRenderCase::FboRenderCase (Context& context, const char* name, const char* description, const FboConfig& config)
518 StencilClearsTest (Context& context, const FboConfig& config);
524 StencilClearsTest::StencilClearsTest (Context& context, const FboConfig& config)
609 SharedColorbufferTest (Context& context, const FboConfig& config);
615 SharedColorbufferTest::SharedColorbufferTest (Context& context, const FboConfig& config)
646 FboConfig cfg = m_config;
739 SharedColorbufferClearsTest (Context& context, const FboConfig& config);
745 SharedColorbufferClearsTest::SharedColorbufferClearsTest (Context& context, const FboConfig& config)
842 SharedDepthStencilTest (Context& context, const FboConfig& config);
845 static bool isConfigSupported (const FboConfig& config);
849 SharedDepthStencilTest::SharedDepthStencilTest (Context& context, const FboConfig& config)
854 bool SharedDepthStencilTest::isConfigSupported (const FboConfig& config)
883 FboConfig cfg = m_config;
974 TexSubImageAfterRenderTest (Context& context, const FboConfig& config);
980 TexSubImageAfterRenderTest::TexSubImageAfterRenderTest (Context& context, const FboConfig& config)
1029 TexSubImageBetweenRenderTest (Context& context, const FboConfig& config);
1035 TexSubImageBetweenRenderTest::TexSubImageBetweenRenderTest (Context& context, const FboConfig& config)
1100 ResizeTest (Context& context, const FboConfig& config);
1106 ResizeTest::ResizeTest (Context& context, const FboConfig& config)
1250 RecreateBuffersTest (Context& context, const FboConfig& config, deUint32 buffers, bool rebind);
1260 RecreateBuffersTest::RecreateBuffersTest (Context& context, const FboConfig& config, deUint32 buffers, bool rebind)
1551 FboConfig config(GL_COLOR_BUFFER_BIT|GL_STENCIL_BUFFER_BIT, colorType, colorFmt, stencilType, depthStencilFormats[fmtNdx].format);
1566 FboConfig config(GL_COLOR_BUFFER_BIT, objectTypes[typeNdx], colorFormats[colorFmtNdx].format, GL_NONE, GL_NONE);
1590 FboConfig colorOnlyConfig (GL_COLOR_BUFFER_BIT, objectTypes[typeNdx], colorFormats[colorFmtNdx].format, GL_NONE, GL_NONE);
1591 FboConfig colorDepthConfig (GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT, objectTypes[typeNdx], colorFormats[colorFmtNdx].format, depthStencilType, depthStencilFormat);
1592 FboConfig colorDepthStencilConfig (GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT|GL_STENCIL_BUFFER_BIT, objectTypes[typeNdx], colorFormats[colorFmtNdx].format, depthStencilType, depthStencilFormat);
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);
1631 FboConfig config(GL_COLOR_BUFFER_BIT, objectTypes[typeNdx], colorFormat, GL_NONE, GL_NONE);
1650 FboConfig config(GL_COLOR_BUFFER_BIT|(depth ? GL_DEPTH_BUFFER_BIT : 0)|(stencil ? GL_STENCIL_BUFFER_BIT : 0),
1671 FboConfig config(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT|GL_STENCIL_BUFFER_BIT, objectTypes[typeNdx], colorFormat, depthStencilType, depthStencilFormat);
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);