Lines Matching refs:getConfig
143 const FboConfig& getConfig (void) const { return m_config; } in getConfig() function in deqp::gles3::Functional::Framebuffer
589 if (fbo.getConfig().colorType == GL_TEXTURE_2D) in render()
720 if (fboA.getConfig().colorType == GL_TEXTURE_2D) in render()
731 …readPixels(context, dst, 0, 0, width, height, glu::mapGLInternalFormat(fboA.getConfig().colorForma… in render()
1156 if (fbo.getConfig().colorType == GL_TEXTURE_2D) in render()
1169 switch (fbo.getConfig().colorType) in render()
1173 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().colorFormat, newWidth, newHeight); in render()
1178 context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().colorFormat, newWidth, newHeight); in render()
1187 switch (fbo.getConfig().depthStencilType) in render()
1191 context.texImage2D(GL_TEXTURE_2D, 0, fbo.getConfig().depthStencilFormat, newWidth, newHeight); in render()
1196 …context.renderbufferStorage(GL_RENDERBUFFER, fbo.getConfig().depthStencilFormat, newWidth, newHeig… in render()
1334 deUint32 type = ndx == 0 ? fbo.getConfig().colorType in render()
1335 : fbo.getConfig().depthStencilType; in render()
1336 deUint32 format = ndx == 0 ? fbo.getConfig().colorFormat in render()
1337 : fbo.getConfig().depthStencilFormat; in render()
1376 deUint32 type = ndx == 0 ? fbo.getConfig().colorType in render()
1377 : fbo.getConfig().depthStencilType; in render()
1426 if (fbo.getConfig().colorType == GL_TEXTURE_2D) in render()