]> git.sesse.net Git - movit/commitdiff
Make sure we do not send infinities to benchmarking textures.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 2 Jan 2018 17:03:35 +0000 (18:03 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 2 Jan 2018 17:03:51 +0000 (18:03 +0100)
deinterlace_effect_test.cpp
resample_effect_test.cpp

index dec132246e09a6aef4e40e41faf66fcce38542f2..a509f8c270ef17d0f5806bcafa1af5999ac8f1d1 100644 (file)
@@ -243,11 +243,11 @@ void BM_DeinterlaceEffect(benchmark::State &state, TestFormat format, bool spati
        unique_ptr<float[]> out_data(new float[width * height * format.bytes_per_pixel]);
 
        for (unsigned i = 0; i < width * field_height * format.bytes_per_pixel; ++i) {
-               field1[i] = rand();
-               field2[i] = rand();
-               field3[i] = rand();
-               field4[i] = rand();
-               field5[i] = rand();
+               field1[i] = rand() / (RAND_MAX + 1.0);
+               field2[i] = rand() / (RAND_MAX + 1.0);
+               field3[i] = rand() / (RAND_MAX + 1.0);
+               field4[i] = rand() / (RAND_MAX + 1.0);
+               field5[i] = rand() / (RAND_MAX + 1.0);
        }
 
        EffectChainTester tester(nullptr, width, height);
index 4faa810005e21759457de174dbb5c32ed6e73be1..71354f209c4a2858553c3f00b939bce3fec1bb70 100644 (file)
@@ -452,7 +452,7 @@ void BM_ResampleEffect(benchmark::State &state, GammaCurve gamma_curve, GLenum o
        unique_ptr<T[]> out_data(new T[out_width * out_height * 4]);
 
        for (unsigned i = 0; i < in_width * in_height * 4; ++i) {
-               data[i] = from_fp32<T>(float(rand()));
+               data[i] = from_fp32<T>(rand() / (RAND_MAX + 1.0));
        }
 
        EffectChainTester tester(nullptr, out_width, out_height, FORMAT_BGRA_POSTMULTIPLIED_ALPHA, COLORSPACE_sRGB, gamma_curve, output_format);