Home | History | Annotate | Download | only in functional

Lines Matching refs:ReadPixelsTest

53 class ReadPixelsTest : public TestCase
56 ReadPixelsTest (Context& context, const char* name, const char* description, bool chooseFormat, int alignment);
69 ReadPixelsTest::ReadPixelsTest (Context& context, const char* name, const char* description, bool chooseFormat, int alignment)
77 void ReadPixelsTest::render (tcu::Texture2D& reference)
144 void ReadPixelsTest::getFormatInfo (tcu::TextureFormat& format, GLint& glFormat, GLint& glType, int& pixelSize)
168 TestCase::IterateResult ReadPixelsTest::iterate (void)
263 addChild(new ReadPixelsTest(m_context, "rgba_ubyte_align_1", "", false, 1));
264 addChild(new ReadPixelsTest(m_context, "rgba_ubyte_align_2", "", false, 2));
265 addChild(new ReadPixelsTest(m_context, "rgba_ubyte_align_4", "", false, 4));
266 addChild(new ReadPixelsTest(m_context, "rgba_ubyte_align_8", "", false, 8));
268 addChild(new ReadPixelsTest(m_context, "choose_align_1", "", true, 1));
269 addChild(new ReadPixelsTest(m_context, "choose_align_2", "", true, 2));
270 addChild(new ReadPixelsTest(m_context, "choose_align_4", "", true, 4));
271 addChild(new ReadPixelsTest(m_context, "choose_align_8", "", true, 8));