diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-06-27 22:10:00 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-06-27 22:10:00 +0000 |
commit | 2d8db39301349f67e17fc1b21e5d33d5f44cd521 (patch) | |
tree | c877df2f77ecd09fa50e526101198643bbeba473 /src/mesa/x86/3dnow.c | |
parent | 24507ff6ab91a85f98da60745bd6585499968b60 (diff) |
added aligned memory allocations (Gareth Hughes)
Diffstat (limited to 'src/mesa/x86/3dnow.c')
-rw-r--r-- | src/mesa/x86/3dnow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/x86/3dnow.c b/src/mesa/x86/3dnow.c index f61e369edc..dd085b6cbe 100644 --- a/src/mesa/x86/3dnow.c +++ b/src/mesa/x86/3dnow.c @@ -1,4 +1,4 @@ -/* $Id: 3dnow.c,v 1.4 2000/06/14 21:55:11 brianp Exp $ */ +/* $Id: 3dnow.c,v 1.5 2000/06/27 22:10:01 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -50,7 +50,7 @@ #define XFORM_ARGS GLvector4f *to_vec, \ - const GLmatrix *mat, \ + const GLfloat m[16], \ const GLvector4f *from_vec, \ const GLubyte *mask, \ const GLubyte flag |