diff options
author | Brian <[email protected]> | 2007-06-11 10:57:01 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-06-11 11:03:08 -0600 |
commit | cf239ced0deb839b85eedd0dba322969e79f1704 (patch) | |
tree | d1551d81f8f52e6e53d5a174c0226d14850139bc /src/mesa/main/context.c | |
parent | c56588407c01760978f524b42abceb677fbaa8f1 (diff) |
In generic_nop() call _mesa_warning() instead of _mesa_problem() since it's an app issue, not a mesa bug.
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 24469b01fb4..255023c0fa9 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; } |