diff options
author | Keith Whitwell <[email protected]> | 2009-10-24 13:18:34 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-10-24 13:19:26 +0100 |
commit | 074606a806df755ecbb84e0a1182c66fd0b2a8dd (patch) | |
tree | 7a1bbe361281dbd7000cceaa813cab03585a8a8c /src/gallium/drivers/i965/brw_wm_debug.c | |
parent | 7ee60648a3696d8166d76b20156c4b43fddf9e71 (diff) |
i965g: more files compiling
Diffstat (limited to 'src/gallium/drivers/i965/brw_wm_debug.c')
-rw-r--r-- | src/gallium/drivers/i965/brw_wm_debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_wm_debug.c b/src/gallium/drivers/i965/brw_wm_debug.c index 220821087c1..c6659646f2c 100644 --- a/src/gallium/drivers/i965/brw_wm_debug.c +++ b/src/gallium/drivers/i965/brw_wm_debug.c @@ -98,7 +98,7 @@ void brw_wm_print_insn( struct brw_wm_compile *c, } _mesa_printf("]"); - if (inst->writemask != WRITEMASK_XYZW) + if (inst->writemask != BRW_WRITEMASK_XYZW) _mesa_printf(".%s%s%s%s", GET_BIT(inst->writemask, 0) ? "x" : "", GET_BIT(inst->writemask, 1) ? "y" : "", |