added comments

This commit is contained in:
Brian
2007-07-10 11:54:16 -06:00
parent 1fe4cf83cd
commit 720c0eb71d
+6 -3
View File
@@ -25,22 +25,25 @@
*
**************************************************************************/
/**
* \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;