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

pull/43/head
Sean Barrett 2014-09-13 08:22:15 -07:00
parent 8849501a3f
commit f711fdcb0f
1 changed files with 3 additions and 3 deletions

View File

@ -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);