Lines Matching full:cmpimg
55 FuzzyComparisonMetricCase (tcu::TestContext& testCtx, const char* name, const char* refImg, const char* cmpImg, const float minBound, const float maxBound)
58 , m_cmpImg (cmpImg)
67 tcu::TextureLevel cmpImg;
76 tcu::ImageIO::loadImage(cmpImg, m_testCtx.getArchive(), de::FilePath::join(BASE_DIR, m_cmpImg).getPath());
82 result = tcu::fuzzyCompare(params, refImg, cmpImg, errorMask);
87 << TestLog::Image("CmpImage", "Compare Image", cmpImg)
114 BilinearCompareCase (tcu::TestContext& testCtx, const char* name, const char* refImg, const char* cmpImg, const tcu::RGBA& threshold, bool expectedResult)
117 , m_cmpImg (cmpImg)
126 tcu::TextureLevel cmpImg;
131 loadImageRGBA8(cmpImg, m_testCtx.getArchive(), de::FilePath::join(BASE_DIR, m_cmpImg).getPath());
135 result = tcu::bilinearCompare(m_testCtx.getLog(), "CompareResult", "Image comparison result", refImg, cmpImg, m_threshold, tcu::COMPARE_LOG_EVERYTHING);