Просмотр исходного кода

disable performance test in test code, back to regression test path

Sean Barrett 11 лет назад
Родитель
Сommit
f711fdcb0f
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      tests/resample_test.cpp

+ 3 - 3
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);