From 985abea279120ef55a72fa8000e5060580742334 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 4 Jan 2011 20:30:54 -0800 Subject: [PATCH] Don't continually print stub message for testgles --- src/video/android/SDL_androidgl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/video/android/SDL_androidgl.c b/src/video/android/SDL_androidgl.c index bcd37dbcf..15276b1bb 100644 --- a/src/video/android/SDL_androidgl.c +++ b/src/video/android/SDL_androidgl.c @@ -32,7 +32,6 @@ #include "SDL_androidvideo.h" #include "SDL_androidevents.h" -#include "SDL_androidrender.h" #include @@ -73,7 +72,7 @@ SDL_GLContext Android_GL_CreateContext(_THIS, SDL_Window * window){ int Android_GL_MakeCurrent(_THIS, SDL_Window * window, SDL_GLContext context){ - __android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_MakeCurrent\n"); + //__android_log_print(ANDROID_LOG_INFO, "SDL", "[STUB] GL_MakeCurrent\n"); return 0; }