added comments
authorBrian <brian.paul@tungstengraphics.com>
Tue, 10 Jul 2007 17:54:16 +0000 (11:54 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Tue, 10 Jul 2007 17:54:16 +0000 (11:54 -0600)
src/mesa/pipe/draw/draw_cull.c

index d27d33a40ded1e434e4265a31cca2a692ca97347..e7343cfd7659f0ff9300a025b8c49e4ac841f4a5 100644 (file)
  * 
  **************************************************************************/
 
+/**
+ * \brief  Drawing stage for polygon culling
+ */
+
 /* Authors:  Keith Whitwell <keith@tungstengraphics.com>
  */
 
+
 #include "main/imports.h"
 #include "pipe/p_defines.h"
 #include "draw_private.h"
 
 
-
 struct cull_stage {
    struct prim_stage stage;
-   GLuint mode;
+   GLuint mode;  /**< one of PIPE_WINDING_x */
 };
 
 
-
 static INLINE struct cull_stage *cull_stage( struct prim_stage *stage )
 {
    return (struct cull_stage *)stage;