diff options
author | Kendall Bennett <[email protected]> | 2003-10-08 01:53:30 +0000 |
---|---|---|
committer | Kendall Bennett <[email protected]> | 2003-10-08 01:53:30 +0000 |
commit | 2cdd699a77f7801b1e37b72108a33fa95354e67a (patch) | |
tree | 09e9862652847f7eeeb6258620fb2012c8e6e90c /src/mesa/math/m_debug_util.h | |
parent | 4e5b58f48382862922dbc387080bfb2378a43b47 (diff) |
More SciTech SNAP specific changes to glheader.h. Also modified the macros
in swrast/s_spantemp.h to allow dithering to be used in the SNAP drivers.
Diffstat (limited to 'src/mesa/math/m_debug_util.h')
-rw-r--r-- | src/mesa/math/m_debug_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/math/m_debug_util.h b/src/mesa/math/m_debug_util.h index 9b89c90e36a..9df84301f10 100644 --- a/src/mesa/math/m_debug_util.h +++ b/src/mesa/math/m_debug_util.h @@ -268,6 +268,8 @@ enum { NIL = 0, ONE = 1, NEG = -1, VAR = 2 }; # define ALIGN16 __attribute__ ((aligned (16))) #elif defined(__MSC__) # define ALIGN16 __declspec(align(16)) /* GH: Does this work? */ +#elif defined(__WATCOMC__) +# define ALIGN16 /* Watcom does not support this */ #else # warning "ALIGN16 will not 16-byte align!\n" # define ALIGN16 |