X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=test_util.cpp;h=aa9cf5651aced8ef9f29e99c2ba3a093d565d3d2;hp=bcfc97a644146837ba50b1e7cb8de05756a8c0dd;hb=47d5eca6c49be8f1bfcf62b36f884d97d12ca6f0;hpb=9bfa15dcbddfdeaaba490879362f74d75982ee2f diff --git a/test_util.cpp b/test_util.cpp index bcfc97a..aa9cf56 100644 --- a/test_util.cpp +++ b/test_util.cpp @@ -68,7 +68,7 @@ void EffectChainTester::run(float *out_data, GLenum format, ColorSpace color_spa } } -void expect_equal(const float *ref, const float *result, unsigned width, unsigned height) +void expect_equal(const float *ref, const float *result, unsigned width, unsigned height, float largest_difference_limit, float rms_limit) { float largest_difference = -1.0f; float squared_difference = 0.0f; @@ -81,9 +81,6 @@ void expect_equal(const float *ref, const float *result, unsigned width, unsigne } } - const float largest_difference_limit = 1.5 / 255.0; - const float rms_limit = 0.2 / 255.0; - EXPECT_LT(largest_difference, largest_difference_limit); float rms = sqrt(squared_difference) / (width * height);