diff test/testdyngles.c @ 5153:1435f8a6425c

Nobody is currently maintaining the QNX code, so removing it for now.
author Sam Lantinga <slouken@libsdl.org>
date Tue, 01 Feb 2011 21:40:03 -0800
parents f4bc25567731
children
line wrap: on
line diff
--- a/test/testdyngles.c	Tue Feb 01 21:23:43 2011 -0800
+++ b/test/testdyngles.c	Tue Feb 01 21:40:03 2011 -0800
@@ -116,10 +116,6 @@
     /* you may want to change these according to the platform */
     video_w = 320;
     video_h = 480;
-#ifdef __QNXNTO__
-    video_w = 480;
-    video_h = 640;
-#endif /* __QNXNTO__ */
 
     if (argv[1]) {
         gl_library = argv[1];
@@ -151,12 +147,7 @@
         pixels[3 * i + 2] = rand() % 250 - 125;
     }
 
-#ifdef __QNXNTO__
-    f.glViewport(0, 0, video_h, video_w);
-#else
     f.glViewport(0, 0, video_w, video_h);
-#endif /* __QNXNTO__ */
-
     f.glMatrixMode(GL_PROJECTION);
     f.glLoadIdentity();
     f.glOrthof(-100, 100, -100, 100, -500, 500);