Lines Matching defs:image
70 // Verifies image contains only yellow or greeen, or a linear combination
72 static bool verifyImageYellowGreen (const tcu::Surface& image, tcu::TestLog& log, bool logImageOnSuccess)
78 tcu::Surface error (image.getWidth(), image.getHeight());
81 log << TestLog::Message << "Verifying image contents." << TestLog::EndMessage;
83 for (int y = 0; y < image.getHeight(); y++)
84 for (int x = 0; x < image.getWidth(); x++)
86 const tcu::RGBA pixel = image.getPixel(x, y);
105 << TestLog::Image("Result", "Result", image)
115 << TestLog::Image("Result", "Result", image)