Lines Matching defs:image
76 // Verifies image contains only yellow or greeen, or a linear combination
78 static bool verifyImageYellowGreen (const tcu::Surface& image, tcu::TestLog& log, bool logImageOnSuccess)
84 tcu::Surface error (image.getWidth(), image.getHeight());
87 log << TestLog::Message << "Verifying image contents." << TestLog::EndMessage;
89 for (int y = 0; y < image.getHeight(); y++)
90 for (int x = 0; x < image.getWidth(); x++)
92 const tcu::RGBA pixel = image.getPixel(x, y);
111 << TestLog::Image("Result", "Result", image)
121 << TestLog::Image("Result", "Result", image)