Lines Matching refs:getConfig

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