*
**************************************************************************/
-/* Authors: Keith Whitwell <keith@tungstengraphics.com>
+/**
+ * \brief polygon offset state
+ *
+ * \author Keith Whitwell <keith@tungstengraphics.com>
+ * \author Brian Paul
*/
#include "main/imports.h"
struct offset_stage {
struct prim_stage stage;
- GLuint hw_data_offset;
-
GLfloat scale;
GLfloat units;
};
static INLINE struct offset_stage *offset_stage( struct prim_stage *stage )
{
- return (struct offset_stage *)stage;
+ return (struct offset_stage *) stage;
}