summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_eu_emit.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-10-24 13:18:34 +0100
committerKeith Whitwell <keithw@vmware.com>2009-10-24 13:19:26 +0100
commit074606a806df755ecbb84e0a1182c66fd0b2a8dd (patch)
tree7a1bbe361281dbd7000cceaa813cab03585a8a8c /src/gallium/drivers/i965/brw_eu_emit.c
parent7ee60648a3696d8166d76b20156c4b43fddf9e71 (diff)
i965g: more files compiling
Diffstat (limited to 'src/gallium/drivers/i965/brw_eu_emit.c')
-rw-r--r--src/gallium/drivers/i965/brw_eu_emit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/i965/brw_eu_emit.c b/src/gallium/drivers/i965/brw_eu_emit.c
index 241cdc33f8..f6b8843e01 100644
--- a/src/gallium/drivers/i965/brw_eu_emit.c
+++ b/src/gallium/drivers/i965/brw_eu_emit.c
@@ -1276,7 +1276,7 @@ void brw_SAMPLE(struct brw_compile *p,
* instruction, so that is a guide for whether a workaround is
* needed.
*/
- if (writemask != WRITEMASK_XYZW) {
+ if (writemask != BRW_WRITEMASK_XYZW) {
GLuint dst_offset = 0;
GLuint i, newmask = 0, len = 0;
@@ -1299,7 +1299,7 @@ void brw_SAMPLE(struct brw_compile *p,
else {
struct brw_reg m1 = brw_message_reg(msg_reg_nr);
- newmask = ~newmask & WRITEMASK_XYZW;
+ newmask = ~newmask & BRW_WRITEMASK_XYZW;
brw_push_insn_state(p);