Lines Matching refs:result
358 // result with that of the RGB color <clum>.
727 glw::GLubyte* result = new glw::GLubyte[4 * dim * dim];
728 gl.readPixels(0, 0, dim, dim, GL_RGBA, GL_UNSIGNED_BYTE, result);
732 tcu::RGBA res = tcu::RGBA::fromBytes(result);
740 allSame = allSame && (0 == memcmp(result, result + (i * 4), 4));
749 delete[] result;
1066 // Get result and calculate reference.
1226 // Check the result to see that extension was actually enabled.
1227 glw::GLubyte result[4] = { 1, 2, 3, 4 };
1228 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, result);
1230 bool pass = tcu::RGBA::fromBytes(result) == tcu::RGBA(0, 0, 0, 0xFF);
1593 glw::GLubyte result[4] = { 1, 2, 3, 4 };
1595 gl.readPixels(0, 0, 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, result);
1597 if (tcu::RGBA::fromBytes(result) != tcu::RGBA::white())
1601 << "contents changed: " << tcu::RGBA::fromBytes(result) << " expected:" << tcu::RGBA::white()