remove unused hw_data_offset
authorBrian <brian.paul@tungstengraphics.com>
Wed, 11 Jul 2007 22:17:23 +0000 (16:17 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Wed, 11 Jul 2007 22:17:23 +0000 (16:17 -0600)
src/mesa/pipe/draw/draw_offset.c

index 1a41265..a2705d5 100644 (file)
  * 
  **************************************************************************/
 
-/* Authors:  Keith Whitwell <keith@tungstengraphics.com>
+/**
+ * \brief  polygon offset state
+ *
+ * \author  Keith Whitwell <keith@tungstengraphics.com>
+ * \author  Brian Paul
  */
 
 #include "main/imports.h"
@@ -37,8 +41,6 @@
 struct offset_stage {
    struct prim_stage stage;
 
-   GLuint hw_data_offset;
-
    GLfloat scale;
    GLfloat units;
 };
@@ -47,7 +49,7 @@ struct offset_stage {
 
 static INLINE struct offset_stage *offset_stage( struct prim_stage *stage )
 {
-   return (struct offset_stage *)stage;
+   return (struct offset_stage *) stage;
 }