summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_zoom.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-12-05 04:48:53 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-12-05 04:48:53 +0000
commit93e0ba8b80338e3526dcf686afef369e39391b45 (patch)
tree5fa329626c8932dc399edc86242e085e00f32bd0 /src/mesa/swrast/s_zoom.h
parent6e179ad9efe2b9febec6411704b7b08f769c434f (diff)
properly handle very wide images
Diffstat (limited to 'src/mesa/swrast/s_zoom.h')
-rw-r--r--src/mesa/swrast/s_zoom.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/mesa/swrast/s_zoom.h b/src/mesa/swrast/s_zoom.h
index 77ddb47823..54ccf69eb8 100644
--- a/src/mesa/swrast/s_zoom.h
+++ b/src/mesa/swrast/s_zoom.h
@@ -1,8 +1,8 @@
-/* $Id: s_zoom.h,v 1.7 2002/01/31 00:27:43 brianp Exp $ */
+/* $Id: s_zoom.h,v 1.8 2002/12/05 04:48:53 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 4.1
+ * Version: 5.1
*
* Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
*
@@ -32,18 +32,21 @@
extern void
_mesa_write_zoomed_rgba_span( GLcontext *ctx, const struct sw_span *span,
- CONST GLchan rgb[][4], GLint y0 );
+ CONST GLchan rgb[][4], GLint y0,
+ GLint skipPixels );
extern void
_mesa_write_zoomed_rgb_span( GLcontext *ctx, const struct sw_span *span,
- CONST GLchan rgb[][3], GLint y0 );
+ CONST GLchan rgb[][3], GLint y0,
+ GLint skipPixels );
extern void
_mesa_write_zoomed_index_span( GLcontext *ctx, const struct sw_span *span,
- GLint y0 );
+ GLint y0, GLint skipPixels );
extern void
_mesa_write_zoomed_stencil_span( GLcontext *ctx, GLuint n, GLint x, GLint y,
- const GLstencil stencil[], GLint y0 );
+ const GLstencil stencil[], GLint y0,
+ GLint skipPixels );
#endif