draw: remove misleading comments
authorKeith Whitwell <keith@tungstengraphics.com>
Thu, 17 Apr 2008 09:37:53 +0000 (10:37 +0100)
committerKeith Whitwell <keith@tungstengraphics.com>
Thu, 17 Apr 2008 13:23:13 +0000 (14:23 +0100)
src/gallium/auxiliary/draw/draw_pt_pipeline.c

index e70e63d08fbd0c0619cd8c5f91a0615263ca4984..17ce6febec9d36626ee77d0358e8ab58aaf9862b 100644 (file)
 #include "draw/draw_vertex.h"
 #include "draw/draw_pt.h"
 
-
-/**
- * Add a point to the primitive queue.
- * \param i0  index into user's vertex arrays
- */
 static void do_point( struct draw_context *draw,
                      const char *v0 )
 {
@@ -55,11 +50,6 @@ static void do_point( struct draw_context *draw,
 }
 
 
-/**
- * Add a line to the primitive queue.
- * \param i0  index into user's vertex arrays
- * \param i1  index into user's vertex arrays
- */
 static void do_line( struct draw_context *draw,
                     const char *v0,
                     const char *v1 )
@@ -75,9 +65,7 @@ static void do_line( struct draw_context *draw,
    draw->pipeline.first->line( draw->pipeline.first, &prim );
 }
 
-/**
- * Add a triangle to the primitive queue.
- */
+
 static void do_triangle( struct draw_context *draw,
                         char *v0,
                         char *v1,