diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2002-02-13 00:53:19 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2002-02-13 00:53:19 +0000 |
commit | 0cb28418d06c30e431bdff515c1d36a812d5950d (patch) | |
tree | 4055885872891fb515f0acb780bf63a3a5fb02b8 /src/mesa/main/macros.h | |
parent | 12a1024d9d003afe1212cc48af04dac81c034299 (diff) |
More suport for t&l drivers
Fix GLuint compare bugs
Fix RESET_STIPPLE calls
Diffstat (limited to 'src/mesa/main/macros.h')
-rw-r--r-- | src/mesa/main/macros.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mesa/main/macros.h b/src/mesa/main/macros.h index d4cd6b858a..bb83b30d5d 100644 --- a/src/mesa/main/macros.h +++ b/src/mesa/main/macros.h @@ -1,4 +1,4 @@ -/* $Id: macros.h,v 1.24 2001/06/11 07:52:51 joukj Exp $ */ +/* $Id: macros.h,v 1.25 2002/02/13 00:53:19 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -270,6 +270,13 @@ do { \ (DST)[2] = (SRCA)[2] * (SRCB)[2]; \ } while (0) +#define SELF_SCALE_3V( DST, SRC ) \ +do { \ + (DST)[0] *= (SRC)[0]; \ + (DST)[1] *= (SRC)[1]; \ + (DST)[2] *= (SRC)[2]; \ +} while (0) + #define ACC_3V( DST, SRC ) \ do { \ (DST)[0] += (SRC)[0]; \ |