diff options
author | Brian Paul <[email protected]> | 2003-03-25 02:23:44 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-03-25 02:23:44 +0000 |
commit | 45bc887da226403f2c41077e40ca38b6f60f1359 (patch) | |
tree | 831190e41ee62449b751e82ab259797bced40524 /src/mesa/swrast/s_points.c | |
parent | af1bfb7281eb8175adb7bb9774aeafa020e3831b (diff) |
replace _mesa_ prefix with _swrast_, remove s_histogram.[ch]
Diffstat (limited to 'src/mesa/swrast/s_points.c')
-rw-r--r-- | src/mesa/swrast/s_points.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/swrast/s_points.c b/src/mesa/swrast/s_points.c index 2bbd169b747..640a70ac92b 100644 --- a/src/mesa/swrast/s_points.c +++ b/src/mesa/swrast/s_points.c @@ -1,4 +1,4 @@ -/* $Id: s_points.c,v 1.20 2003/03/01 01:50:26 brianp Exp $ */ +/* $Id: s_points.c,v 1.21 2003/03/25 02:23:47 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -268,10 +268,10 @@ _swrast_choose_point( GLcontext *ctx ) } } else if (ctx->RenderMode==GL_FEEDBACK) { - USE(_mesa_feedback_point); + USE(_swrast_feedback_point); } else { /* GL_SELECT mode */ - USE(_mesa_select_point); + USE(_swrast_select_point); } } |