From: Brian Date: Tue, 10 Jul 2007 17:54:16 +0000 (-0600) Subject: added comments X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=720c0eb71db9908c5ecef15263c2ae638d61d07b;p=mesa.git added comments --- diff --git a/src/mesa/pipe/draw/draw_cull.c b/src/mesa/pipe/draw/draw_cull.c index d27d33a40de..e7343cfd765 100644 --- a/src/mesa/pipe/draw/draw_cull.c +++ b/src/mesa/pipe/draw/draw_cull.c @@ -25,22 +25,25 @@ * **************************************************************************/ +/** + * \brief Drawing stage for polygon culling + */ + /* Authors: Keith Whitwell */ + #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;