X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=resample_effect_test.cpp;h=02d9d74d1102ace6a956331bac2280f8a368060f;hp=353429ee82a703f5c0f6fcf7c6ef11825ef72c0c;hb=34776d3ed2565ee834405e575bf3bfc7f7933e36;hpb=c62391987241f1482a99b6f6417fbec1d0ef2344 diff --git a/resample_effect_test.cpp b/resample_effect_test.cpp index 353429e..02d9d74 100644 --- a/resample_effect_test.cpp +++ b/resample_effect_test.cpp @@ -162,8 +162,8 @@ TEST(ResampleEffectTest, UpscaleByThreeGetsCorrectPixelCenters) { EXPECT_FLOAT_EQ(1.0, out_data[7 * (size * 3) + 7]); for (unsigned y = 0; y < size * 3; ++y) { for (unsigned x = 0; x < size * 3; ++x) { - EXPECT_FLOAT_EQ(out_data[y * (size * 3) + x], out_data[(size * 3 - y - 1) * (size * 3) + x]); - EXPECT_FLOAT_EQ(out_data[y * (size * 3) + x], out_data[y * (size * 3) + (size * 3 - x - 1)]); + EXPECT_NEAR(out_data[y * (size * 3) + x], out_data[(size * 3 - y - 1) * (size * 3) + x], 1e-6); + EXPECT_NEAR(out_data[y * (size * 3) + x], out_data[y * (size * 3) + (size * 3 - x - 1)], 1e-6); } } } @@ -407,7 +407,7 @@ TEST(ResampleEffectTest, Precision) { // Deliberately put the data of interest very close to the right, // where texture coordinates are farther from 0 and thus less precise. - float data[size] = {0}; + float data[size * 2] = {0}; data[size - offset] = 1.0f; float expected_data[size * 2] = {0}; for (int x = 0; x < size * 2; ++x) {