fragment program execution
[mesa.git] / src / mesa / tnl / t_pipeline.h
index 60b349d0e01db3cfb1579d40aa69dd4ec9272239..179c536b360bff3392b4a41c13ee0c3525377d25 100644 (file)
@@ -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.10 2002/10/29 20:29:03 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -24,7 +24,7 @@
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  *
  * Authors:
- *    Keith Whitwell <keithw@valinux.com>
+ *    Keith Whitwell <keith@tungstengraphics.com>
  */
 
 
@@ -54,6 +54,7 @@ extern const struct gl_pipeline_stage _tnl_fog_coordinate_stage;
 extern const struct gl_pipeline_stage _tnl_texgen_stage;
 extern const struct gl_pipeline_stage _tnl_texture_transform_stage;
 extern const struct gl_pipeline_stage _tnl_point_attenuation_stage;
+extern const struct gl_pipeline_stage _tnl_vertex_program_stage;
 extern const struct gl_pipeline_stage _tnl_render_stage;
 
 /* Shorthand to plug in the default pipeline:
@@ -66,4 +67,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