diff options
author | Brian Paul <[email protected]> | 2003-11-25 15:58:22 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-11-25 15:58:22 +0000 |
commit | b65bc4f87b356cf6228151cd2f341432e80dc6b8 (patch) | |
tree | 208918293c838bb8c86c59cb266b621def3ac2d7 /src/mesa/tnl/t_save_playback.c | |
parent | e749be22b03312c3927964c85d589868e3292977 (diff) |
Remove unnecessary usage of __FUNCTION__.
#define MESA_FUNCTION to __FUNCTION__ if MESA_DEBUG is defined.
Diffstat (limited to 'src/mesa/tnl/t_save_playback.c')
-rw-r--r-- | src/mesa/tnl/t_save_playback.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_save_playback.c b/src/mesa/tnl/t_save_playback.c index e30735af068..4669e4b32c9 100644 --- a/src/mesa/tnl/t_save_playback.c +++ b/src/mesa/tnl/t_save_playback.c @@ -1,4 +1,3 @@ - /* * Mesa 3-D graphics library * Version: 5.1 @@ -188,7 +187,8 @@ void _tnl_playback_vertex_list( GLcontext *ctx, void *data ) /* Degenerate case: list references current data and would * require fixup. Take the easier option & loop it back. */ - _mesa_debug( 0, "%s: loopback dangling attr ref\n", __FUNCTION__); + _mesa_debug(ctx, + "tnl_playback_vertex_list: loopback dangling attr ref\n"); _tnl_loopback_vertex_list( ctx, data ); return; } |