Lines Matching refs:getConfig

325 	const FboConfig&	getConfig					(void) const { return m_config; }
359 const FboConfig& getConfig (void) const { return m_config; }
544 const FboConfig& getConfig (void) const { return m_config; }
668 Framebuffer fbo(context, getConfig(), width, height);
697 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D)
773 Framebuffer fbo(ctx, getConfig(), width, height);
795 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D)
875 Framebuffer fboA(context, getConfig(), m_fboAWidth, m_fboAHeight);
885 Framebuffer fboB(context, getConfig(), m_fboBWidth, m_fboBHeight);
957 Framebuffer fbo(context, getConfig(), width, height);
974 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D)
1014 Framebuffer fbo(context, getConfig(), width, height);
1050 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D)
1117 bool depth = getConfig().depthbufferType != GL_NONE;
1122 Framebuffer fbo(ctx, getConfig(), width, height);
1159 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D)
1192 // bool depth = getConfig().depthbufferFormat != GL_NONE;
1193 bool stencil = getConfig().stencilbufferFormat != GL_NONE;
1206 Framebuffer fboA(context, getConfig(), width, height);
1210 FboConfig cfg = getConfig();
1217 switch (getConfig().colorbufferType)
1286 if (fboA.getConfig().colorbufferType == GL_TEXTURE_2D)
1326 checkColorFormatSupport(context, getConfig().colorbufferFormat);
1329 if (getConfig().colorbufferType == GL_TEXTURE_2D)
1332 context.texImage2D(GL_TEXTURE_2D, 0, getConfig().colorbufferFormat, width, height);
1337 DE_ASSERT(getConfig().colorbufferType == GL_RENDERBUFFER);
1339 context.renderbufferStorage(GL_RENDERBUFFER, getConfig().colorbufferFormat, width, height);
1347 if (getConfig().colorbufferType == GL_TEXTURE_2D)
1359 throw FboIncompleteException(getConfig(), status, __FILE__, __LINE__);
1389 if (getConfig().colorbufferType == GL_TEXTURE_2D)
1433 bool stencil = getConfig().stencilbufferType != GL_NONE;
1448 Framebuffer fboA(context, getConfig(), width, height);
1452 FboConfig cfg = getConfig();
1458 DE_ASSERT(fboA.getConfig().depthbufferType == GL_RENDERBUFFER);
1500 if (getConfig().colorbufferType == GL_TEXTURE_2D)
1546 bool isRGBA = getConfig().colorbufferFormat == GL_RGBA;
1612 bool isRGBA = getConfig().colorbufferFormat == GL_RGBA;
1690 bool depth = getConfig().depthbufferType != GL_NONE;
1691 bool stencil = getConfig().stencilbufferType != GL_NONE;
1696 Framebuffer fbo(context, getConfig(), 128, 128);
1711 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D)
1727 switch (fbo.getConfig().colorbufferType)
1731 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorbufferFormat, newWidth, newHeight);
1736 context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorbufferFormat, newWidth, newHeight);
1745 DE_ASSERT(fbo.getConfig().depthbufferType == GL_RENDERBUFFER);
1747 context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().depthbufferFormat, newWidth, newHeight);
1752 DE_ASSERT(fbo.getConfig().stencilbufferType == GL_RENDERBUFFER);
1754 context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().stencilbufferFormat, newWidth, newHeight);
1786 if (getConfig().colorbufferType == GL_TEXTURE_2D)
1860 bool stencil = getConfig().stencilbufferType != GL_NONE;
1865 Framebuffer fbo(ctx, getConfig(), width, height);
1898 switch (fbo.getConfig().colorbufferType)
1903 ctx.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorbufferFormat, width, height);
1913 ctx.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorbufferFormat, width, height);
1927 DE_ASSERT(fbo.getConfig().depthbufferType == GL_RENDERBUFFER);
1931 ctx.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().depthbufferFormat, width, height);
1940 DE_ASSERT(fbo.getConfig().stencilbufferType == GL_RENDERBUFFER);
1944 ctx.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().stencilbufferFormat, width, height);
2013 ctx.texImage2D(GL_TEXTURE_2D, 0, getConfig().colorbufferFormat, fboSizes[fboNdx], fboSizes[fboNdx], 0,
2014 getConfig().colorbufferFormat, GL_UNSIGNED_BYTE, DE_NULL);
2026 throw FboIncompleteException(getConfig(), status, __FILE__, __LINE__);