From 9297f028a47ef2766e1f3d332d36c517f678f5e3 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 23 Sep 2012 11:54:51 +0200 Subject: [PATCH] ifdef out extension logging. --- gfx/gl.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gfx/gl.c b/gfx/gl.c index 4c71f868fe..612756bc4d 100644 --- a/gfx/gl.c +++ b/gfx/gl.c @@ -1219,9 +1219,12 @@ static bool resolve_extensions(gl_t *gl) gl->border_type = GL_CLAMP_TO_BORDER; #endif + // Useful for debugging, but kinda obnoxious. +#if 0 const char *ext = (const char*)glGetString(GL_EXTENSIONS); if (ext) RARCH_LOG("[GL] Supported extensions: %s\n", ext); +#endif #if defined(HAVE_PBO) RARCH_LOG("[GL]: Using PBOs.\n");