Lines Matching refs:getConfig
143 const FboConfig& getConfig (void) const { return m_config; } in getConfig() function in deqp::gles3::Functional::Framebuffer
591 if (fbo.getConfig().colorType == GL_TEXTURE_2D) in render()
722 if (fboA.getConfig().colorType == GL_TEXTURE_2D) in render()
733 …readPixels(context, dst, 0, 0, width, height, glu::mapGLInternalFormat(fboA.getConfig().colorForma… in render()
1158 if (fbo.getConfig().colorType == GL_TEXTURE_2D) in render()
1171 switch (fbo.getConfig().colorType) in render()
1175 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorFormat, newWidth, newHeight); in render()
1180 context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorFormat, newWidth, newHeight); in render()
1189 switch (fbo.getConfig().depthStencilType) in render()
1193 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().depthStencilFormat, newWidth, newHeight); in render()
1198 …context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().depthStencilFormat, newWidth, newHeig… in render()
1336 deUint32 type = ndx == 0 ? fbo.getConfig().colorType in render()
1337 : fbo.getConfig().depthStencilType; in render()
1338 deUint32 format = ndx == 0 ? fbo.getConfig().colorFormat in render()
1339 : fbo.getConfig().depthStencilFormat; in render()
1378 deUint32 type = ndx == 0 ? fbo.getConfig().colorType in render()
1379 : fbo.getConfig().depthStencilType; in render()
1428 if (fbo.getConfig().colorType == GL_TEXTURE_2D) in render()