summaryrefslogtreecommitdiff
path: root/src/mesa/main/macros.h
diff options
context:
space:
mode:
authorJouk Jansen <joukj@hrem.stm.tudelft.nl>2001-06-11 07:52:51 +0000
committerJouk Jansen <joukj@hrem.stm.tudelft.nl>2001-06-11 07:52:51 +0000
commit5891a5dd5545c67c7360d08566f62f54e37a4897 (patch)
treeeb297df51cd238fce81b0b36bae87a77b4b277cf /src/mesa/main/macros.h
parent0ce9f39d237bf86dc50d2822dafde3d6bdc279e1 (diff)
Committing in .
Modified Files: Mesa/src/macros.h Added #define COPY_4UBV() for non i386 machines ----------------------------------------------------------------------
Diffstat (limited to 'src/mesa/main/macros.h')
-rw-r--r--src/mesa/main/macros.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h
index 7823654d12..d4cd6b858a 100644
--- a/src/mesa/main/macros.h
+++ b/src/mesa/main/macros.h
@@ -1,4 +1,4 @@
-/* $Id: macros.h,v 1.23 2001/06/08 15:46:30 brianp Exp $ */
+/* $Id: macros.h,v 1.24 2001/06/11 07:52:51 joukj Exp $ */
/*
* Mesa 3-D graphics library
@@ -129,6 +129,7 @@ do { \
} while (0)
#else
/* The GLuint cast might fail if DST or SRC are not dword-aligned (RISC) */
+#define COPY_4UBV(DST, SRC) \
do { \
(DST)[0] = (SRC)[0]; \
(DST)[1] = (SRC)[1]; \