From 68ee4bc7caf5a48c8a5c51efc258e74eb9689905 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 28 Jan 2000 19:02:22 +0000 Subject: enable/disable no-context warnings depending on MESA_DEBUG --- src/mesa/main/context.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'src/mesa/main/context.c') diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 7b51ebb119..f654334e9e 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.34 2000/01/24 16:19:55 brianp Exp $ */ +/* $Id: context.c,v 1.35 2000/01/28 19:02:22 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -450,11 +450,20 @@ static void one_time_init( void ) gl_init_vbrender(); gl_init_vbxform(); gl_init_vertices(); - alreadyCalled = GL_TRUE; - } + + if (getenv("MESA_DEBUG")) { + _glapi_noop_enable_warnings(GL_TRUE); + } + else { + _glapi_noop_enable_warnings(GL_FALSE); + } + #if defined(DEBUG) && defined(__DATE__) && defined(__TIME__) fprintf(stderr, "Mesa DEBUG build %s %s\n", __DATE__, __TIME__); #endif + + alreadyCalled = GL_TRUE; + } } -- cgit v1.2.3