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_zoom.h | |
parent | af1bfb7281eb8175adb7bb9774aeafa020e3831b (diff) |
replace _mesa_ prefix with _swrast_, remove s_histogram.[ch]
Diffstat (limited to 'src/mesa/swrast/s_zoom.h')
-rw-r--r-- | src/mesa/swrast/s_zoom.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/swrast/s_zoom.h b/src/mesa/swrast/s_zoom.h index 54ccf69eb80..75cb404f886 100644 --- a/src/mesa/swrast/s_zoom.h +++ b/src/mesa/swrast/s_zoom.h @@ -1,4 +1,4 @@ -/* $Id: s_zoom.h,v 1.8 2002/12/05 04:48:53 brianp Exp $ */ +/* $Id: s_zoom.h,v 1.9 2003/03/25 02:23:48 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -31,21 +31,21 @@ #include "swrast.h" extern void -_mesa_write_zoomed_rgba_span( GLcontext *ctx, const struct sw_span *span, +_swrast_write_zoomed_rgba_span( GLcontext *ctx, const struct sw_span *span, CONST GLchan rgb[][4], GLint y0, GLint skipPixels ); extern void -_mesa_write_zoomed_rgb_span( GLcontext *ctx, const struct sw_span *span, +_swrast_write_zoomed_rgb_span( GLcontext *ctx, const struct sw_span *span, CONST GLchan rgb[][3], GLint y0, GLint skipPixels ); extern void -_mesa_write_zoomed_index_span( GLcontext *ctx, const struct sw_span *span, +_swrast_write_zoomed_index_span( GLcontext *ctx, const struct sw_span *span, GLint y0, GLint skipPixels ); extern void -_mesa_write_zoomed_stencil_span( GLcontext *ctx, GLuint n, GLint x, GLint y, +_swrast_write_zoomed_stencil_span( GLcontext *ctx, GLuint n, GLint x, GLint y, const GLstencil stencil[], GLint y0, GLint skipPixels ); |