diff options
author | Matt Turner <[email protected]> | 2014-08-06 16:13:26 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-08-07 16:00:24 -0700 |
commit | 50d5fc192b1558de048447498c876ff28a3433e6 (patch) | |
tree | c67881796d0b4047a5ea14677fec5cd15c8bccae /src/mesa/main/macros.h | |
parent | 4837b130a76a49b3a9edbd3543843091ee1a75ce (diff) |
mesa: Drop USE_IEEE define.
I think OpenVMS was the only platform that Mesa ran on that used a
non-IEEE representation for floats. We removed OpenVMS support a while
back, and this should alleviate the need to continue updating the
this-platform-uses-IEEE list.
The one bit of this patch that needs review is the IS_INF_OR_NAN,
because I'm not sure if MSVC supports isfinite.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=82268
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/macros.h')
-rw-r--r-- | src/mesa/main/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h index 954df3cc8d8..0ba658a9a43 100644 --- a/src/mesa/main/macros.h +++ b/src/mesa/main/macros.h @@ -140,7 +140,7 @@ extern GLfloat _mesa_ubyte_to_float_color_tab[256]; *** UNCLAMPED_FLOAT_TO_UBYTE: clamp float to [0,1] and map to ubyte in [0,255] *** CLAMPED_FLOAT_TO_UBYTE: map float known to be in [0,1] to ubyte in [0,255] ***/ -#if defined(USE_IEEE) && !defined(DEBUG) +#ifndef DEBUG /* This function/macro is sensitive to precision. Test very carefully * if you change it! */ |