From f711fdcb0f019fdaacc24c9315e5bffd115a9ed3 Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Sat, 13 Sep 2014 08:22:15 -0700 Subject: [PATCH] disable performance test in test code, back to regression test path --- tests/resample_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/resample_test.cpp b/tests/resample_test.cpp index 71902aa..1f654e6 100644 --- a/tests/resample_test.cpp +++ b/tests/resample_test.cpp @@ -149,13 +149,13 @@ static void performance(int argc, char **argv) int n, i; int out_w, out_h, srgb=1; input_pixels = stbi_load(argv[1], &w, &h, &n, 0); - #if 0 + #if 1 out_w = w/4; out_h h/4; count=100; // 1 #elif 0 out_w = w*2; out_h = h/4; count=20; // 2 // note this is structured pessimily, would be much faster to downsample vertically first #elif 0 out_w = w/4; out_h = h*2; count=50; // 3 - #elif 1 + #elif 0 out_w = w*3; out_h = h*3; count=5; srgb=0; // 4 #else out_w = w*3; out_h = h*3; count=3; // 5 // this is dominated by linear->sRGB conversion @@ -181,7 +181,7 @@ int main(int argc, char** argv) int out_w, out_h, out_stride; //resizer(argc, argv); - performance(argc, argv); + //performance(argc, argv); #if 1 test_suite(argc, argv);