From 1182ffeec39bf419928ba862c225e80a439fee7a Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Thu, 12 Jul 2001 22:09:21 +0000 Subject: Rename some of the tnl->Driver.* functions to tnl->Driver.Render.*, to make it clear that these are owned by t_vb_render.c. Make swrast_setup opaque - it now hooks itself directly into tnl->Driver.Render.*. Add a _swsetup_Wakeup() call that does this. Update X11 (tested), osmesa and FX drivers for this change. FX compiles but is probably broken as the changes there are large. It was the only remaining driver that used the internal _swsetup_ functions for interp and copy_pv. This usage has been replaced with code from the DRI tdfx driver. --- src/mesa/tnl/t_pipeline.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/mesa/tnl/t_pipeline.h') diff --git a/src/mesa/tnl/t_pipeline.h b/src/mesa/tnl/t_pipeline.h index 60b349d0e0..cb057df810 100644 --- a/src/mesa/tnl/t_pipeline.h +++ b/src/mesa/tnl/t_pipeline.h @@ -1,4 +1,4 @@ -/* $Id: t_pipeline.h,v 1.7 2001/03/12 00:48:43 gareth Exp $ */ +/* $Id: t_pipeline.h,v 1.8 2001/07/12 22:09:22 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -66,4 +66,10 @@ extern const struct gl_pipeline_stage *_tnl_default_pipeline[]; extern render_func _tnl_render_tab_elts[]; extern render_func _tnl_render_tab_verts[]; +extern void _tnl_RenderClippedPolygon( GLcontext *ctx, + const GLuint *elts, GLuint n ); + +extern void _tnl_RenderClippedLine( GLcontext *ctx, GLuint ii, GLuint jj ); + + #endif -- cgit v1.2.3