diff options
author | Brian Paul <[email protected]> | 2005-11-09 16:30:50 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-09 16:30:50 +0000 |
commit | a8717180d9805de3bf1ca30eff5487575fcfb384 (patch) | |
tree | 2d05b0de5082c397acd208587c7c766df05ef557 /src/mesa/main/macros.h | |
parent | cfca72cfb19367d824a3254b40566b3fc01723ea (diff) |
Bug 4996.
Replace use of FLOAT_TO_USHORT with either CLAMPED_FLOAT_TO_USHORT or
UNCLAMPED_FLOAT_TO_USHORT. Same should be done for UBYTE, UINT, etc.
Diffstat (limited to 'src/mesa/main/macros.h')
-rw-r--r-- | src/mesa/main/macros.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h index dab58818fb7..672a2f8bd2f 100644 --- a/src/mesa/main/macros.h +++ b/src/mesa/main/macros.h @@ -57,9 +57,6 @@ extern GLfloat _mesa_ubyte_to_float_color_tab[256]; /** Convert GLushort in [0,65536] to GLfloat in [0.0,1.0] */ #define USHORT_TO_FLOAT(S) ((GLfloat) (S) * (1.0F / 65535.0F)) -/** Convert GLfloat in [0.0,1.0] to GLushort in [0,65536] */ -#define FLOAT_TO_USHORT(X) ((GLushort) (GLint) ((X) * 65535.0F)) - /** Convert GLshort in [-32768,32767] to GLfloat in [-1.0,1.0] */ #define SHORT_TO_FLOAT(S) ((2.0F * (S) + 1.0F) * (1.0F/65535.0F)) |