diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2001-01-29 20:47:39 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2001-01-29 20:47:39 +0000 |
commit | 5c1e7fa6ee72f4403d9ec9d12830dd689b966e71 (patch) | |
tree | 8cb11c26af178632b05de9c5b2f53c32331475c5 /src/mesa/swrast_setup/swrast_setup.h | |
parent | 4b90e68ac6d0fe4ffca5e2cd51794bb4350cac28 (diff) |
Removed knowledge of swrast Clear/Bitmap/Accum/Draw/Read/CopyPixels
functions from core mesa -- if drivers need these fallbacks they
must now call them themselves.
Introduced hooks for clip-vertex-interpolation and the rendering
of clipped lines and polygons. Allows drivers to interpolate
their hardware-format vertices directly. Used in dri drivers to
replace fastpath code.
Slight optimizations to pipeline build/run routines.
Diffstat (limited to 'src/mesa/swrast_setup/swrast_setup.h')
-rw-r--r-- | src/mesa/swrast_setup/swrast_setup.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mesa/swrast_setup/swrast_setup.h b/src/mesa/swrast_setup/swrast_setup.h index f3607c75e9..f3f8941a40 100644 --- a/src/mesa/swrast_setup/swrast_setup.h +++ b/src/mesa/swrast_setup/swrast_setup.h @@ -69,4 +69,22 @@ _swsetup_RenderStart( GLcontext *ctx ); extern void _swsetup_RenderFinish( GLcontext *ctx ); +extern void +_swsetup_RenderProjectInterpVerts( GLcontext *ctx ); + +extern void +_swsetup_RenderInterp( GLcontext *ctx, GLfloat t, + GLuint dst, GLuint out, GLuint in, + GLboolean force_boundary ); +extern void +_swsetup_RenderCopyPV( GLcontext *ctx, GLuint dst, GLuint src ); + +extern void +_swsetup_RenderClippedPolygon( GLcontext *ctx, const GLuint *elts, GLuint n ); + +extern void +_swsetup_RenderClippedLine( GLcontext *ctx, GLuint ii, GLuint jj ); + + + #endif |