summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_zoom.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2006-10-11 22:21:55 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2006-10-11 22:21:55 +0000
commit8a5871a98c23ce1a1d893b681f59dc8c42228dd1 (patch)
tree80adfa732d431f2e1adb5b89621503399c3da326 /src/mesa/swrast/s_zoom.h
parent55fa6a2fdbc9108f2d435b70cefb58e77bba903a (diff)
use GLvoid * for _swrast_write_zoomed_rgb/rgba_span() functions
Diffstat (limited to 'src/mesa/swrast/s_zoom.h')
-rw-r--r--src/mesa/swrast/s_zoom.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_zoom.h b/src/mesa/swrast/s_zoom.h
index a7750dcaa3..6ca11ac211 100644
--- a/src/mesa/swrast/s_zoom.h
+++ b/src/mesa/swrast/s_zoom.h
@@ -31,13 +31,11 @@
extern void
_swrast_write_zoomed_rgba_span(GLcontext *ctx, GLint imgX, GLint imgY,
- const SWspan *span,
- CONST GLchan rgb[][4]);
+ const SWspan *span, const GLvoid *rgba);
extern void
_swrast_write_zoomed_rgb_span(GLcontext *ctx, GLint imgX, GLint imgY,
- const SWspan *span,
- CONST GLchan rgb[][3]);
+ const SWspan *span, const GLvoid *rgb);
extern void
_swrast_write_zoomed_index_span(GLcontext *ctx, GLint imgX, GLint imgY,