Lines Matching refs:m_format
82 GLint m_format; member in deqp::gles3::Functional::__anon216a25e40111::ReadPixelsTest
101 , m_format (format) in ReadPixelsTest()
208 GLU_CHECK_CALL(glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_FORMAT, &m_format)); in getFormatInfo()
211 if (m_format != GL_RGBA && m_format != GL_BGRA && m_format != GL_RGB) in getFormatInfo()
212 …d IMPLEMENTATION_COLOR_READ_FORMAT: " + de::toString(glu::getTextureFormatStr(m_format))).c_str()); in getFormatInfo()
217 format = glu::mapGLTransferFormat(m_format, m_type); in getFormatInfo()
249 else if (m_format == GL_RGBA || m_format == GL_BGRA || m_format == GL_RGB) in clearColor()
259 if (m_format == GL_RGBA || m_format == GL_BGRA || m_format == GL_RGB) in clearColor()
275 else if (m_format == GL_RGBA_INTEGER) in clearColor()
318 GLU_CHECK_CALL(glReadPixels(0, 0, m_width, m_height, m_format, m_type, &(pixelData[0]))); in clearColor()
333 …m_testCtx.getLog() << tcu::TestLog::Message << "Format: " << glu::getTextureFormatStr(m_format) <<… in iterate()