Lines Matching refs:maxDiff

590 	UVec4				maxDiff				(0, 0, 0, 0);
607 maxDiff = max(maxDiff, diff);
614 bool compareOk = boolAll(lessThanEqual(maxDiff, threshold));
627 log << TestLog::Message << "Image comparison failed: max difference = " << maxDiff << ", threshold = " << threshold << TestLog::EndMessage;
676 Vec4 maxDiff (0.0f, 0.0f, 0.0f, 0.0f);
694 maxDiff = max(maxDiff, diff);
701 bool compareOk = boolAll(lessThanEqual(maxDiff, threshold));
714 log << TestLog::Message << "Image comparison failed: max difference = " << maxDiff << ", threshold = " << threshold << TestLog::EndMessage;
766 Vec4 maxDiff(0.0f, 0.0f, 0.0f, 0.0f);
787 maxDiff = max(maxDiff, diff);
795 bool compareOk = boolAll(lessThanEqual(maxDiff, threshold));
808 log << TestLog::Message << "Image comparison failed: max difference = " << maxDiff << ", threshold = " << threshold << TestLog::EndMessage;
858 Vec4 maxDiff (0.0f, 0.0f, 0.0f, 0.0f);
872 maxDiff = max(maxDiff, diff);
882 bool compareOk = boolAll(lessThanEqual(maxDiff, threshold));
894 log << TestLog::Message << "Image comparison failed: max difference = " << maxDiff << ", threshold = " << threshold << ", reference = " << reference << TestLog::EndMessage;
943 U64Vec4 maxDiff (0u, 0u, 0u, 0u);
970 maxDiff = max(maxDiff, diff);
978 bool compareOk = boolAll(lessThanEqual(maxDiff, threshold64));
1001 log << TestLog::Message << "Image comparison failed: max difference = " << maxDiff << ", threshold = " << threshold << TestLog::EndMessage;
1050 float maxDiff = 0.0;
1072 maxDiff = (float) deMax(maxDiff, diff);
1090 bool compareOk = (maxDiff <= threshold) && allStencilOk;
1096 if (maxDiff > threshold)
1097 log << TestLog::Message << "Depth comparison failed: max difference = " << maxDiff << ", threshold = " << threshold << TestLog::EndMessage;