diff options
author | Brian Paul <[email protected]> | 2005-11-09 00:56:51 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-09 00:56:51 +0000 |
commit | 8850a7e20f77c1bd79863667b2f1c64c2d730f38 (patch) | |
tree | 0a7c4e8caa4f51b62d2f5e36f4efc4959ee34bda /src/mesa/main/imports.h | |
parent | 5374e4ba7eaca2ee0ca73863ffbe9e639d090e3e (diff) |
Move COPY_FLOAT() macro down into glide driver.
Rewrite COPY_4FV() macro to not use COPY_FLOAT(), and use integer moves as
originally intended.
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index afc292cf51e..7ee127400af 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -495,12 +495,6 @@ static INLINE int iceil(float f) /*** - *** COPY_FLOAT: copy a float from src to dest. - ***/ -#define COPY_FLOAT( dst, src ) (dst) = (src) - - -/*** *** START_FAST_MATH: Set x86 FPU to faster, 32-bit precision mode (and save *** original mode to a temporary). *** END_FAST_MATH: Restore x86 FPU to original mode. |