diff options
author | Brian Paul <[email protected]> | 2002-02-02 21:40:33 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-02-02 21:40:33 +0000 |
commit | b37a084357dd08573b86d6d8c5ba43d65bdc1bd7 (patch) | |
tree | e9b71cecbc7500a5c6144c79cda6ac2a7a7e3558 /src/mesa/swrast/s_points.h | |
parent | 733a4b602bbbfda83ee03b7ae4f3737bbe659034 (diff) |
Converted line drawing over to new span code, pb no longer used.
Big clean-up of line drawing code.
Removed many obsolete span processing functions.
Diffstat (limited to 'src/mesa/swrast/s_points.h')
-rw-r--r-- | src/mesa/swrast/s_points.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/swrast/s_points.h b/src/mesa/swrast/s_points.h index f52b32b76e5..27047f45ba8 100644 --- a/src/mesa/swrast/s_points.h +++ b/src/mesa/swrast/s_points.h @@ -1,4 +1,4 @@ -/* $Id: s_points.h,v 1.5 2001/03/12 00:48:42 gareth Exp $ */ +/* $Id: s_points.h,v 1.6 2002/02/02 21:40:33 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -30,10 +30,10 @@ #include "mtypes.h" -void +extern void _swrast_choose_point( GLcontext *ctx ); -void +extern void _swrast_add_spec_terms_point( GLcontext *ctx, const SWvertex *v0 ); |