diff options
author | Brian Paul <[email protected]> | 2001-03-03 20:33:27 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-03 20:33:27 +0000 |
commit | 08836341788a9f9d638d9dc8328510ccd18ddeb5 (patch) | |
tree | 6bd480b7f5f595c63914b1d39727d70a0f954723 /src/mesa/swrast/s_lines.c | |
parent | 19bbfc62638b60dd1a41e84686f24483adea5b03 (diff) |
lots of gl_*() to _mesa_*() namespace clean-up
Diffstat (limited to 'src/mesa/swrast/s_lines.c')
-rw-r--r-- | src/mesa/swrast/s_lines.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/mesa/swrast/s_lines.c b/src/mesa/swrast/s_lines.c index af62dba3d99..114ddeb320b 100644 --- a/src/mesa/swrast/s_lines.c +++ b/src/mesa/swrast/s_lines.c @@ -1,4 +1,4 @@ -/* $Id: s_lines.c,v 1.11 2001/02/16 18:14:41 keithw Exp $ */ +/* $Id: s_lines.c,v 1.12 2001/03/03 20:33:30 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -67,7 +67,7 @@ static void flat_ci_line( GLcontext *ctx, #include "s_linetemp.h" - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -86,7 +86,7 @@ static void flat_ci_z_line( GLcontext *ctx, #include "s_linetemp.h" - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -105,7 +105,7 @@ static void flat_rgba_line( GLcontext *ctx, #include "s_linetemp.h" - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -125,7 +125,7 @@ static void flat_rgba_z_line( GLcontext *ctx, #include "s_linetemp.h" - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -155,7 +155,7 @@ static void smooth_ci_line( GLcontext *ctx, #include "s_linetemp.h" PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -188,7 +188,7 @@ static void smooth_ci_z_line( GLcontext *ctx, #include "s_linetemp.h" PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -222,7 +222,7 @@ static void smooth_rgba_line( GLcontext *ctx, #include "s_linetemp.h" PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -262,14 +262,14 @@ static void smooth_rgba_z_line( GLcontext *ctx, #include "s_linetemp.h" PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } #define CHECK_FULL(count) \ if (count >= PB_SIZE-MAX_WIDTH) { \ PB->count = count; \ - gl_flush_pb(ctx); \ + _mesa_flush_pb(ctx); \ count = PB->count; \ } @@ -351,7 +351,7 @@ static void general_smooth_ci_line( GLcontext *ctx, } PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -423,7 +423,7 @@ static void general_flat_ci_line( GLcontext *ctx, } PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -526,7 +526,7 @@ static void general_smooth_rgba_line( GLcontext *ctx, } PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -569,7 +569,7 @@ static void general_flat_rgba_line( GLcontext *ctx, } } - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -634,7 +634,7 @@ static void flat_textured_line( GLcontext *ctx, } PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -712,7 +712,7 @@ static void smooth_textured_line( GLcontext *ctx, } PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -809,7 +809,7 @@ static void smooth_multitextured_line( GLcontext *ctx, } PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -906,7 +906,7 @@ static void flat_multitextured_line( GLcontext *ctx, } PB->count = count; - gl_flush_pb(ctx); + _mesa_flush_pb(ctx); } @@ -1060,11 +1060,11 @@ _swrast_choose_line( GLcontext *ctx ) } } else if (ctx->RenderMode==GL_FEEDBACK) { - swrast->Line = gl_feedback_line; + swrast->Line = _mesa_feedback_line; } else { /* GL_SELECT mode */ - swrast->Line = gl_select_line; + swrast->Line = _mesa_select_line; } /*_mesa_print_line_function(ctx);*/ |