In generic_nop() call _mesa_warning() instead of _mesa_problem() since it's an app...
authorBrian <brian.paul@tungstengraphics.com>
Mon, 11 Jun 2007 16:57:01 +0000 (10:57 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Mon, 11 Jun 2007 17:03:08 +0000 (11:03 -0600)
src/mesa/main/context.c

index 24469b01fb43c776d6cc91437137fe460d635832..255023c0fa973ec26e1a31fd4a713486bdef5f19 100644 (file)
@@ -978,7 +978,7 @@ init_attrib_groups(GLcontext *ctx)
 static int
 generic_nop(void)
 {
-   _mesa_problem(NULL, "User called no-op dispatch function (an unsupported extension function?)");
+   _mesa_warning(NULL, "User called no-op dispatch function (an unsupported extension function?)");
    return 0;
 }