mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 03:08:05 +02:00
remove unused hw_data_offset
This commit is contained in:
parent
46d75518fa
commit
2371ed36f7
1 changed files with 6 additions and 4 deletions
|
|
@ -25,7 +25,11 @@
|
|||
*
|
||||
**************************************************************************/
|
||||
|
||||
/* 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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue