diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-08-17 17:11:50 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-08-17 17:11:50 +0000 |
commit | f2dd273322cc9ec0cfe80a609f9a1e5db5931e2e (patch) | |
tree | edc2da6b3b703c474fc12003e4c38505cb8ef2a5 /src/mesa/main/macros.h | |
parent | 4f12be02491713d6998fa43e3efc19daf2faffeb (diff) |
Re-org of register files for vertex/fragment programs. Will be easier to
hook in global state references, etc. for ARB programs.
Diffstat (limited to 'src/mesa/main/macros.h')
-rw-r--r-- | src/mesa/main/macros.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h index fcb63f53f2..f3c77ca5fc 100644 --- a/src/mesa/main/macros.h +++ b/src/mesa/main/macros.h @@ -146,15 +146,6 @@ do { \ (DST)[3] = (SRC)[3]; \ } while (0) -/** Copy a 4-element vector with cast */ -#define COPY_4V_CAST( DST, SRC, CAST ) \ -do { \ - (DST)[0] = (CAST)(SRC)[0]; \ - (DST)[1] = (CAST)(SRC)[1]; \ - (DST)[2] = (CAST)(SRC)[2]; \ - (DST)[3] = (CAST)(SRC)[3]; \ -} while (0) - /** Copy a 4-element unsigned byte vector */ #if defined(__i386__) #define COPY_4UBV(DST, SRC) \ |