diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-08-20 18:45:14 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-08-20 18:45:14 -0600 |
commit | 3772441c498b997947f68e98830f72649bbc8442 (patch) | |
tree | 35d306d7532bd4c038a3bfb44c614f0c122167ad /src/mesa/pipe/draw | |
parent | 79b8f97457a9634df28ba0def4623dbe2b142f09 (diff) |
move ALIGN16-related macros into p_compiler.h
Diffstat (limited to 'src/mesa/pipe/draw')
-rw-r--r-- | src/mesa/pipe/draw/draw_arrays.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mesa/pipe/draw/draw_arrays.c b/src/mesa/pipe/draw/draw_arrays.c index 34a031ddf0..9b1426d1ec 100644 --- a/src/mesa/pipe/draw/draw_arrays.c +++ b/src/mesa/pipe/draw/draw_arrays.c @@ -50,16 +50,6 @@ #define VERT_RESULT_MAX 24 -#if defined __GNUC__ -#define ALIGN16_DECL(TYPE, NAME, SIZE) TYPE NAME[SIZE] __attribute__(( aligned( 16 ) )) -#define ALIGN16_ASSIGN(P) P -#else -#define ALIGN16_DECL(TYPE, NAME, SIZE) TYPE NAME[SIZE + 1] -#define ALIGN16_ASSIGN(P) align16(P) -#endif - - - static INLINE unsigned compute_clipmask(float cx, float cy, float cz, float cw) { |