r300: Further reduced the radeon_span.c diff.
[mesa.git] / src / mesa / swrast / s_feedback.h
index 9acae42db6379fe8f1dcd60b663f1de3f6c322bc..73f45c10be58aef190176dfc62faf8c352800ad4 100644 (file)
@@ -1,4 +1,3 @@
-/* $Id: s_feedback.h,v 1.5 2001/03/12 00:48:42 gareth Exp $ */
 
 /*
  * Mesa 3-D graphics library
 #include "swrast.h"
 
 
-extern void _mesa_feedback_point( GLcontext *ctx, const SWvertex *v );
+extern void _swrast_feedback_point( GLcontext *ctx, const SWvertex *v );
 
-extern void _mesa_feedback_line( GLcontext *ctx,
+extern void _swrast_feedback_line( GLcontext *ctx,
                               const SWvertex *v1, const SWvertex *v2 );
 
-extern void _mesa_feedback_triangle( GLcontext *ctx, const SWvertex *v0,
+extern void _swrast_feedback_triangle( GLcontext *ctx, const SWvertex *v0,
                                   const SWvertex *v1, const SWvertex *v2 );
 
-extern void _mesa_select_point( GLcontext *ctx, const SWvertex *v );
+extern void _swrast_select_point( GLcontext *ctx, const SWvertex *v );
 
-extern void _mesa_select_line( GLcontext *ctx,
+extern void _swrast_select_line( GLcontext *ctx,
                             const SWvertex *v1, const SWvertex *v2 );
 
-extern void _mesa_select_triangle( GLcontext *ctx, const SWvertex *v0,
+extern void _swrast_select_triangle( GLcontext *ctx, const SWvertex *v0,
                                 const SWvertex *v1, const SWvertex *v2 );
 
 #endif