diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-04-14 13:28:43 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-04-14 13:28:43 -0700 |
commit | 2886822f485a5a9fd2b7aaa8a3812c837edd4bf3 (patch) | |
tree | 8354f9d44637a7f35c7a467897da69e8df1535de /tests | |
parent | 125f7513320e6516c594a8e6c5f7807f09267695 (diff) |
fix for test_sdl_ogl
Diffstat (limited to 'tests')
-rw-r--r-- | tests/sdl_ogl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sdl_ogl.c b/tests/sdl_ogl.c index b7dd29e1..172ec8ec 100644 --- a/tests/sdl_ogl.c +++ b/tests/sdl_ogl.c @@ -51,7 +51,7 @@ int main(int argc, char *argv[]) glClearColor( 0, 0, 0, 0 ); - glEnable( GL_TEXTURE_2D ); // Need this to display a texture + //glEnable( GL_TEXTURE_2D ); // Need this to display a texture XXX unnecessary in OpenGL ES 2.0/WebGL glViewport( 0, 0, 640, 480 ); |