summaryrefslogtreecommitdiff
path: root/src/mesa/main/imports.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-11-09 00:56:51 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-11-09 00:56:51 +0000
commit8850a7e20f77c1bd79863667b2f1c64c2d730f38 (patch)
tree0a7c4e8caa4f51b62d2f5e36f4efc4959ee34bda /src/mesa/main/imports.h
parent5374e4ba7eaca2ee0ca73863ffbe9e639d090e3e (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.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index afc292cf51..7ee127400a 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.