diff options
Diffstat (limited to 'src/mesa/main/matrix.h')
-rw-r--r-- | src/mesa/main/matrix.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/matrix.h b/src/mesa/main/matrix.h index d0fcdabb627..b142afb4613 100644 --- a/src/mesa/main/matrix.h +++ b/src/mesa/main/matrix.h @@ -1,4 +1,4 @@ -/* $Id: matrix.h,v 1.5 1999/12/10 20:01:06 brianp Exp $ */ +/* $Id: matrix.h,v 1.6 2000/06/27 22:10:00 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -34,8 +34,8 @@ typedef struct { - GLfloat m[16]; - GLfloat *inv; /* optional */ + GLfloat *m; /* 16-byte aligned */ + GLfloat *inv; /* optional, 16-byte aligned */ GLuint flags; GLuint type; } GLmatrix; |