diff options
author | Keith Whitwell <[email protected]> | 2001-01-16 05:29:42 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-01-16 05:29:42 +0000 |
commit | d43a5943d8952367d9292653800b47a85f905343 (patch) | |
tree | a33ce0af1f3396c6921643f4662df2ad719a0a34 /src/mesa/swrast_setup/swrast_setup.h | |
parent | 230928ad5f325614288bc481d7135388c052f3ab (diff) |
Fix several conformance problems. Hack solution to line stipple problem.
Diffstat (limited to 'src/mesa/swrast_setup/swrast_setup.h')
-rw-r--r-- | src/mesa/swrast_setup/swrast_setup.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/mesa/swrast_setup/swrast_setup.h b/src/mesa/swrast_setup/swrast_setup.h index 70b1113c909..f3607c75e9f 100644 --- a/src/mesa/swrast_setup/swrast_setup.h +++ b/src/mesa/swrast_setup/swrast_setup.h @@ -25,7 +25,9 @@ * Keith Whitwell <[email protected]> */ -/* Public interface to the swrast_setup module. +/* Public interface to the swrast_setup module. This module provides + * an implementation of the driver interface to t_vb_render.c, and uses + * the software rasterizer (swrast) to perform actual rasterization. */ #ifndef SWRAST_SETUP_H @@ -59,6 +61,12 @@ extern void _swsetup_Points( GLcontext *ctx, GLuint first, GLuint last ); extern void -_swsetup_RenderPrimNoop( GLcontext *ctx, GLenum mode ); +_swsetup_RenderPrimitive( GLcontext *ctx, GLenum mode ); + +extern void +_swsetup_RenderStart( GLcontext *ctx ); + +extern void +_swsetup_RenderFinish( GLcontext *ctx ); #endif |