diff options
author | Brian Paul <[email protected]> | 2004-07-23 15:45:56 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-07-23 15:45:56 +0000 |
commit | b8f29f29eb611c92d43aaf8ffcd2d9743b3af967 (patch) | |
tree | 15081ba933fab1a8d2fd72a3736ceba68a7b11e4 /src/mesa/math/m_debug_xform.c | |
parent | a48edcf69ca6320e34d160bd7b6e69a3549fe8f2 (diff) |
ALIGN16 macro repairs
Diffstat (limited to 'src/mesa/math/m_debug_xform.c')
-rw-r--r-- | src/mesa/math/m_debug_xform.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/mesa/math/m_debug_xform.c b/src/mesa/math/m_debug_xform.c index 728ee2f1efe..b634527b24d 100644 --- a/src/mesa/math/m_debug_xform.c +++ b/src/mesa/math/m_debug_xform.c @@ -1,9 +1,8 @@ - /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 6.1 * - * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -162,9 +161,9 @@ static void init_matrix( GLfloat *m ) m[3] = 11.0; m[7] = 23.0; m[11] = 91.0; m[15] = 9.0; } -static GLfloat s[TEST_COUNT][4] ALIGN16; -static GLfloat d[TEST_COUNT][4] ALIGN16; -static GLfloat r[TEST_COUNT][4] ALIGN16; +ALIGN16(static GLfloat, s[TEST_COUNT][4]); +ALIGN16(static GLfloat, d[TEST_COUNT][4]); +ALIGN16(static GLfloat, r[TEST_COUNT][4]); static int test_transform_function( transform_func func, int psize, int mtype, long *cycles ) |