Lines Matching defs:image
181 void verifyImage (const tcu::Surface& image);
323 void VertexIDCase::verifyImage (const tcu::Surface& image)
329 tcu::Surface error (image.getWidth(), image.getHeight());
331 for (int y = 0; y < image.getHeight(); y++)
332 for (int x = 0; x < image.getWidth(); x++)
334 const tcu::RGBA pixel = image.getPixel(x, y);
338 if ((x < image.getWidth()* 1/4) || (x > image.getWidth() * 3/4)
339 || (y < image.getHeight() * 1/4) || (y > image.getHeight() * 3/4))
354 << TestLog::Image("Result", "Result", image)
361 << TestLog::Image("Result", "Result", image)
368 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Result image invalid");