diff options
author | Gareth Hughes <[email protected]> | 2001-03-20 18:33:41 +0000 |
---|---|---|
committer | Gareth Hughes <[email protected]> | 2001-03-20 18:33:41 +0000 |
commit | 23f48064b87d9adb0b6270eee74e18a7df9e7feb (patch) | |
tree | 7ecfccb764ea2f50c2c1dfc6a158502c5b26455f /src/mesa/drivers/common | |
parent | 815ad714b44281f367dc8e27d607994d714f749f (diff) |
More updates. Radeon tnl module still disabled by default.
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r-- | src/mesa/drivers/common/t_dd_vertex.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mesa/drivers/common/t_dd_vertex.h b/src/mesa/drivers/common/t_dd_vertex.h index 105195dbd56..5ec5906eb22 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.7 2001/03/14 08:51:09 gareth Exp $ */ +/* $Id: t_dd_vertex.h,v 1.8 2001/03/20 18:33:41 gareth Exp $ */ /* * Mesa 3-D graphics library @@ -76,19 +76,19 @@ typedef union { } TAG(Vertex), *TAG(VertexPtr); typedef struct { - TAG(_coord_t) obj; - TAG(_coord_t) normal; + GLfloat obj[4]; + GLfloat normal[4]; - TAG(_coord_t) clip; + GLfloat clip[4]; GLuint mask; - TAG(_color_t) color; - TAG(_color_t) specular; + GLubyte color[4]; + GLubyte specular[4]; GLuint __padding0; - TAG(_coord_t) win; - TAG(_coord_t) eye; + GLfloat win[4]; + GLfloat eye[4]; - TAG(_coord_t) texture[MAX_TEXTURE_UNITS]; + GLfloat texture[MAX_TEXTURE_UNITS][4]; GLuint __padding1[8]; /* FIXME: This is kinda evil... */ } TAG(TnlVertex), *TAG(TnlVertexPtr); |