aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2011-03-13 00:25:36 -0800
committerEric Anholt <[email protected]>2011-03-24 11:31:36 -0700
commit4a101f957714dea2bc956d516d34c5b56ecb2c64 (patch)
treedf7d80c3bf868519ac2025bad39ab1fdfd88c93e /src
parent53d78be3bde68bfb6416fb9c1abfbc24030f390e (diff)
i965/fs: Clean up reg_undef args from long ago lack of fs_inst overloads.
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index 1651eea0f03..cdc9926c81c 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -2078,7 +2078,7 @@ fs_visitor::emit_fb_writes()
if (this->frag_color)
color.reg_offset -= 4;
- fs_inst *inst = emit(FS_OPCODE_FB_WRITE, reg_undef, reg_undef);
+ fs_inst *inst = emit(FS_OPCODE_FB_WRITE);
inst->target = target;
inst->base_mrf = 0;
inst->mlen = nr;
@@ -2097,7 +2097,7 @@ fs_visitor::emit_fb_writes()
emit(BRW_OPCODE_MOV, fs_reg(MRF, color_mrf + 3), color);
}
- fs_inst *inst = emit(FS_OPCODE_FB_WRITE, reg_undef, reg_undef);
+ fs_inst *inst = emit(FS_OPCODE_FB_WRITE);
inst->base_mrf = 0;
inst->mlen = nr;
inst->eot = true;