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()
719 if(getConfig().colorbufferFormat == GL_RGB5_A1) in render()
783 Framebuffer fbo(ctx, getConfig(), width, height); in render()
805 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D) in render()
885 Framebuffer fboA(context, getConfig(), m_fboAWidth, m_fboAHeight); in render()
895 Framebuffer fboB(context, getConfig(), m_fboBWidth, m_fboBHeight); in render()
967 Framebuffer fbo(context, getConfig(), width, height); in render()
984 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1024 Framebuffer fbo(context, getConfig(), width, height); in render()
1060 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1074 if(getConfig().colorbufferFormat == GL_RGB5_A1) in render()
1139 bool depth = getConfig().depthbufferType != GL_NONE; in render()
1144 Framebuffer fbo(ctx, getConfig(), width, height); in render()
1181 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1215 bool stencil = getConfig().stencilbufferFormat != GL_NONE; in render()
1228 Framebuffer fboA(context, getConfig(), width, height); in render()
1232 FboConfig cfg = getConfig(); in render()
1239 switch (getConfig().colorbufferType) in render()
1308 if (fboA.getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1348 checkColorFormatSupport(context, getConfig().colorbufferFormat); in render()
1351 if (getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1354 context.texImage2D(GL_TEXTURE_2D, 0, getConfig().colorbufferFormat, width, height); in render()
1359 DE_ASSERT(getConfig().colorbufferType == GL_RENDERBUFFER); in render()
1361 context.renderbufferStorage(GL_RENDERBUFFER, getConfig().colorbufferFormat, width, height); in render()
1369 if (getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1381 throw FboIncompleteException(getConfig(), status, __FILE__, __LINE__); in render()
1411 if (getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1455 bool stencil = getConfig().stencilbufferType != GL_NONE; in render()
1470 Framebuffer fboA(context, getConfig(), width, height); in render()
1474 FboConfig cfg = getConfig(); in render()
1480 DE_ASSERT(fboA.getConfig().depthbufferType == GL_RENDERBUFFER); in render()
1522 if (getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1568 bool isRGBA = getConfig().colorbufferFormat == GL_RGBA; in render()
1634 bool isRGBA = getConfig().colorbufferFormat == GL_RGBA; in render()
1712 bool depth = getConfig().depthbufferType != GL_NONE; in render()
1713 bool stencil = getConfig().stencilbufferType != GL_NONE; in render()
1718 Framebuffer fbo(context, getConfig(), 128, 128); in render()
1733 if (fbo.getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1749 switch (fbo.getConfig().colorbufferType) in render()
1753 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorbufferFormat, newWidth, newHeight); in render()
1758 …context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorbufferFormat, newWidth, newHeigh… in render()
1767 DE_ASSERT(fbo.getConfig().depthbufferType == GL_RENDERBUFFER); in render()
1769 …context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().depthbufferFormat, newWidth, newHeigh… in render()
1774 DE_ASSERT(fbo.getConfig().stencilbufferType == GL_RENDERBUFFER); in render()
1776 …context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().stencilbufferFormat, newWidth, newHei… in render()
1808 if (getConfig().colorbufferType == GL_TEXTURE_2D) in render()
1882 bool stencil = getConfig().stencilbufferType != GL_NONE; in render()
1887 Framebuffer fbo(ctx, getConfig(), width, height); in render()
1920 switch (fbo.getConfig().colorbufferType) in render()
1925 ctx.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorbufferFormat, width, height); in render()
1935 ctx.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorbufferFormat, width, height); in render()
1949 DE_ASSERT(fbo.getConfig().depthbufferType == GL_RENDERBUFFER); in render()
1953 ctx.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().depthbufferFormat, width, height); in render()
1962 DE_ASSERT(fbo.getConfig().stencilbufferType == GL_RENDERBUFFER); in render()
1966 ctx.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().stencilbufferFormat, width, height); in render()
2035 …ctx.texImage2D(GL_TEXTURE_2D, 0, getConfig().colorbufferFormat, fboSizes[fboNdx], fboSizes[fboNdx]… in render()
2036 getConfig().colorbufferFormat, GL_UNSIGNED_BYTE, DE_NULL); in render()
2048 throw FboIncompleteException(getConfig(), status, __FILE__, __LINE__); in render()