In generic_nop() call _mesa_warning() instead of _mesa_problem() since it's an app issue, not a mesa bug.
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 24469b0..255023c 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -978,7 +978,7 @@
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;
}