summaryrefslogtreecommitdiff
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2001-09-23 15:19:16 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2001-09-23 15:19:16 +0000
commit497d6eab6603699d57d6a742a7940557c430afae (patch)
treefeb45286b5ff60d7ceef343ad14bfcaaaea036f2 /src/mesa/drivers
parent05ba9becc3211795af539d79b70c8a6af2688108 (diff)
More of the same
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/common/t_dd_vertex.h17
1 files changed, 3 insertions, 14 deletions
diff --git a/src/mesa/drivers/common/t_dd_vertex.h b/src/mesa/drivers/common/t_dd_vertex.h
index 5ec5906eb2..9ebeeee61b 100644
--- a/src/mesa/drivers/common/t_dd_vertex.h
+++ b/src/mesa/drivers/common/t_dd_vertex.h
@@ -1,4 +1,4 @@
-/* $Id: t_dd_vertex.h,v 1.8 2001/03/20 18:33:41 gareth Exp $ */
+/* $Id: t_dd_vertex.h,v 1.9 2001/09/23 15:19:16 keithw Exp $ */
/*
* Mesa 3-D graphics library
@@ -76,19 +76,8 @@ typedef union {
} TAG(Vertex), *TAG(VertexPtr);
typedef struct {
- GLfloat obj[4];
- GLfloat normal[4];
-
GLfloat clip[4];
GLuint mask;
-
- GLubyte color[4];
- GLubyte specular[4];
- GLuint __padding0;
-
- GLfloat win[4];
- GLfloat eye[4];
-
- GLfloat texture[MAX_TEXTURE_UNITS][4];
- GLuint __padding1[8]; /* FIXME: This is kinda evil... */
+ GLuint pad; /* alignment */
+ TAG(Vertex) v;
} TAG(TnlVertex), *TAG(TnlVertexPtr);