From: Steinar H. Gunderson Date: Mon, 8 Jan 2018 23:27:05 +0000 (+0100) Subject: Another benchmarking data set fix. X-Git-Tag: 1.6.0~12 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=8cd14c3d54e817f9ad83966409dd672bcbfb7555 Another benchmarking data set fix. --- diff --git a/resample_effect_test.cpp b/resample_effect_test.cpp index 71354f2..a51c51d 100644 --- a/resample_effect_test.cpp +++ b/resample_effect_test.cpp @@ -437,7 +437,7 @@ TEST(ResampleEffectTest, Precision) { } #ifdef HAVE_BENCHMARK -template<> inline uint8_t from_fp32(float x) { return x; } +template<> inline uint8_t from_fp32(float x) { return lrintf(x * 255.0f); } template void BM_ResampleEffect(benchmark::State &state, GammaCurve gamma_curve, GLenum output_format, const std::string &shader_type)