Home | History | Annotate | Download | only in functional

Lines Matching refs:resultImage

202 static bool verifyImageWithVerifier (const tcu::Surface& resultImage, tcu::TestLog& log, const Verifier& verifier, bool logOnSuccess = true)
204 tcu::Surface errorMask (resultImage.getWidth(), resultImage.getHeight());
215 for (int y = 0; y < resultImage.getHeight(); ++y)
216 for (int x = 0; x < resultImage.getWidth(); ++x)
218 const tcu::RGBA color = resultImage.getPixel(x, y);
236 << tcu::TestLog::Image("Result", "Result image", resultImage.getAccess())
244 << tcu::TestLog::Image("Result", "Result image", resultImage.getAccess())
287 bool verifyImage (const tcu::Surface& resultImage);
322 bool NumSamplesCase::verifyImage (const tcu::Surface& resultImage)
324 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), NoRedVerifier());
336 bool verifyImage (const tcu::Surface& resultImage);
399 bool MaxSamplesCase::verifyImage (const tcu::Surface& resultImage)
401 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), NoRedVerifier());
414 bool verifyImage (const tcu::Surface& resultImage);
522 bool SampleIDCase::verifyImage (const tcu::Surface& resultImage)
533 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), FullBlueSomeGreenVerifier());
586 bool verifyImage (const tcu::Surface& resultImage);
669 bool SamplePosDistributionCase::verifyImage (const tcu::Surface& resultImage)
675 if (!verifyImageWithVerifier(resultImage, m_testCtx.getLog(), NoRedVerifier()))
679 if (verifier.m_isStatisticallySignificant && !verifyImageWithVerifier(resultImage, m_testCtx.getLog(), verifier))
884 bool verifyImage (const tcu::Surface& resultImage);
1007 bool SamplePosCorrectnessCase::verifyImage (const tcu::Surface& resultImage)
1009 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), NoRedVerifier());
1031 virtual bool verifyImage (const tcu::Surface& resultImage);
1082 bool SampleMaskBaseCase::verifyImage (const tcu::Surface& resultImage)
1085 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), NoRedVerifier());
1946 bool verifyImage (const tcu::Surface& resultImage);
2088 bool SampleMaskWriteCase::verifyImage (const tcu::Surface& resultImage)
2098 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), ColorVerifier(tcu::Vec3(0.0f, 1.0f, 0.0f)));
2103 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), ColorVerifier(tcu::Vec3(0.0f, 0.0f, 0.0f)));
2108 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), PartialDiscardVerifier());
2117 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), ColorVerifier(tcu::Vec3(0.0f, 1.0f, 0.0f)));
2122 return verifyImageWithVerifier(resultImage, m_testCtx.getLog(), ColorVerifier(tcu::Vec3(0.0f, 0.0f, 0.0f)));