diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2003-09-29 06:04:41 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2003-09-29 06:04:41 +0000 |
commit | 072682a526c685b7622612d1ab4453a97b57feea (patch) | |
tree | 5b8a9f052e41d4c9a408f6c8897b4e10008e62b1 /graphics/glide3/files/patch-h5-distate.c | |
parent | Update to version 0.2.0 (diff) |
Fix build with new gcc by reducing pasting abuse in macros.
Reported by: bento
Diffstat (limited to 'graphics/glide3/files/patch-h5-distate.c')
-rw-r--r-- | graphics/glide3/files/patch-h5-distate.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/graphics/glide3/files/patch-h5-distate.c b/graphics/glide3/files/patch-h5-distate.c new file mode 100644 index 000000000000..33306ffaa37e --- /dev/null +++ b/graphics/glide3/files/patch-h5-distate.c @@ -0,0 +1,43 @@ +--- h5/glide3/src/distate.c.orig Sun Sep 28 22:36:52 2003 ++++ h5/glide3/src/distate.c Sun Sep 28 22:37:05 2003 +@@ -350,31 +350,31 @@ + */ + + #define STOREARG_TMU(function, tmu, arg) \ +-gc->state.stateArgs.##function##Args.arg[tmu] = arg ++gc->state.stateArgs.function##Args.arg[tmu] = arg + + #define LOADARG_TMU(function, tmu, arg) \ +-gc->state.stateArgs.##function##Args.arg[tmu] ++gc->state.stateArgs.function##Args.arg[tmu] + + #define STOREARG(function, arg) \ +-gc->state.stateArgs.##function##Args.arg = arg ++gc->state.stateArgs.function##Args.arg = arg + + #define LOADARG(function, arg) \ +-gc->state.stateArgs.##function##Args.arg ++gc->state.stateArgs.function##Args.arg + + #define NOTVALID(regset) \ +-(gc->state.invalid & ##regset##BIT) ++(gc->state.invalid & regset##BIT) + + #define NOTVALID_TMU(tmu, regset) \ +-(gc->state.tmuInvalid[tmu] & ##regset##BIT) ++(gc->state.tmuInvalid[tmu] & regset##BIT) + + #define SETVALID(regset) \ +-(gc->state.invalid &= ~(##regset##BIT)) ++(gc->state.invalid &= ~(regset##BIT)) + + #define ENABLEMODE(mode) \ +-gc->state.grEnableArgs.##mode## = GR_MODE_ENABLE; ++gc->state.grEnableArgs.mode = GR_MODE_ENABLE; + + #define DISABLEMODE(mode) \ +-gc->state.grEnableArgs.##mode## = GR_MODE_DISABLE; ++gc->state.grEnableArgs.mode = GR_MODE_DISABLE; + + /*------------------------------------------------------------------- + Function: grAlphaBlendFunction |