From cf239ced0deb839b85eedd0dba322969e79f1704 Mon Sep 17 00:00:00 2001 From: Brian Date: Mon, 11 Jun 2007 10:57:01 -0600 Subject: In generic_nop() call _mesa_warning() instead of _mesa_problem() since it's an app issue, not a mesa bug. --- src/mesa/main/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 24469b01fb..255023c0fa 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -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; } -- cgit v1.2.3