In generic_nop() call _mesa_warning() instead of _mesa_problem() since it's an app issue, not a mesa bug.

This commit is contained in:
Brian 2007-06-11 10:57:01 -06:00
parent c56588407c
commit cf239ced0d

View 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;
}