From: Brian Date: Wed, 11 Jul 2007 22:17:23 +0000 (-0600) Subject: remove unused hw_data_offset X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2371ed36f7761c4fa452e51a41947ed34f2b661b;p=mesa.git remove unused hw_data_offset --- diff --git a/src/mesa/pipe/draw/draw_offset.c b/src/mesa/pipe/draw/draw_offset.c index 1a412656179..a2705d5cd6d 100644 --- a/src/mesa/pipe/draw/draw_offset.c +++ b/src/mesa/pipe/draw/draw_offset.c @@ -25,7 +25,11 @@ * **************************************************************************/ -/* Authors: Keith Whitwell +/** + * \brief polygon offset state + * + * \author Keith Whitwell + * \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; }