diff options
author | brianp <brianp> | 2001-06-11 15:19:04 +0000 |
---|---|---|
committer | brianp <brianp> | 2001-06-11 15:19:04 +0000 |
commit | b6580e259ecbf428311ff328a8f4d5380a07820a (patch) | |
tree | 91504f5e209110994e5d658e38d146f39d6ebf1c | |
parent | 192575b245e0ef377cedb23d2b82dde8e751f2b2 (diff) |
fixed non-i386 broken COPY_4UBV macroX_4_1_0-20010614-preimport
-rw-r--r-- | xc/extras/Mesa/src/macros.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xc/extras/Mesa/src/macros.h b/xc/extras/Mesa/src/macros.h index 7aef8f409..279ac3220 100644 --- a/xc/extras/Mesa/src/macros.h +++ b/xc/extras/Mesa/src/macros.h @@ -362,6 +362,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]; \ |