summaryrefslogtreecommitdiff
path: root/src/mesa/main/hint.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-06-15 02:54:01 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-06-15 02:54:01 +0000
commit9d47f3d6b8e8054602a637fad70d4769427df8b4 (patch)
tree4d367d378d271801f9fa05918e8d592d8d565135 /src/mesa/main/hint.c
parent4753d60dd070bb08d0116076bcc08025c86ce857 (diff)
added missing ctx parameter to _mesa_debug() calls
Diffstat (limited to 'src/mesa/main/hint.c')
-rw-r--r--src/mesa/main/hint.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/hint.c b/src/mesa/main/hint.c
index 44da4ab500..57d7eae1fd 100644
--- a/src/mesa/main/hint.c
+++ b/src/mesa/main/hint.c
@@ -1,4 +1,4 @@
-/* $Id: hint.c,v 1.12 2002/06/15 02:38:15 brianp Exp $ */
+/* $Id: hint.c,v 1.13 2002/06/15 02:54:02 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -44,7 +44,8 @@ _mesa_Hint( GLenum target, GLenum mode )
ASSERT_OUTSIDE_BEGIN_END(ctx);
if (MESA_VERBOSE & VERBOSE_API)
- _mesa_debug("glHint %s %d\n", _mesa_lookup_enum_by_nr(target), mode);
+ _mesa_debug(ctx, "glHint %s %d\n",
+ _mesa_lookup_enum_by_nr(target), mode);
if (mode != GL_NICEST && mode != GL_FASTEST && mode != GL_DONT_CARE) {
_mesa_error(ctx, GL_INVALID_ENUM, "glHint(mode)");