diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-02 15:50:56 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-02 15:50:56 -0700 |
commit | c22a3398a4fd8e495898e9dfaba4e15f47d1630f (patch) | |
tree | 25608e73a0cb493914f203a00198bfc518c6efd8 /tests/cubegeom_pre.c | |
parent | 2cb37d3818ce1acbc074e0a545b588ba41aee332 (diff) |
convert test_cubegeom_pre to reftest
Diffstat (limited to 'tests/cubegeom_pre.c')
-rw-r--r-- | tests/cubegeom_pre.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/tests/cubegeom_pre.c b/tests/cubegeom_pre.c index 8001a2b8..fb1a5e02 100644 --- a/tests/cubegeom_pre.c +++ b/tests/cubegeom_pre.c @@ -29,20 +29,6 @@ REDISTRIBUTION OF THIS SOFTWARE. #include <string.h> #include <assert.h> -void verify() { - int width = 640, height = 480; - unsigned char *data = (unsigned char*)malloc(width*height*4); - glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, data); - int sum = 0; - for (int x = 0; x < width*height*4; x++) { - if (x % 4 != 3) sum += x * data[x]; - } -#if EMSCRIPTEN - int result = sum; - REPORT_RESULT(); -#endif -} - int main(int argc, char *argv[]) { SDL_Surface *screen; @@ -295,8 +281,7 @@ int main(int argc, char *argv[]) SDL_GL_SwapBuffers(); - verify(); - + #if !EMSCRIPTEN SDL_Delay(1500); #endif |