Fix typo
[mesa.git] / src / mesa / swrast / swrast.h
index f3820a68b88741dccffdd1685a073cd14d37db18..94b564d78e8b33a4ccd35c5c6f418b463b01d890 100644 (file)
@@ -119,14 +119,15 @@ _swrast_Accum( GLcontext *ctx, GLenum op,
               GLint width, GLint height );
 
 
-/* Get a pointer to the stipple counter.
+/* Reset the stipple counter
  */
-extern GLuint *
-_swrast_get_stipple_counter_ref( GLcontext *ctx );
-
+extern void
+_swrast_ResetLineStipple( GLcontext *ctx );
 
 /* These will always render the correct point/line/triangle for the
  * current state.
+ *
+ * For flatshaded primitives, the provoking vertex is the final one.
  */
 extern void
 _swrast_Point( GLcontext *ctx, const SWvertex *v );
@@ -160,4 +161,9 @@ _swrast_allow_vertex_fog( GLcontext *ctx, GLboolean value );
 extern void
 _swrast_allow_pixel_fog( GLcontext *ctx, GLboolean value );
 
+/* Debug:
+ */
+extern void
+_swrast_print_vertex( GLcontext *ctx, const SWvertex *v );
+
 #endif