diff options
author | Jason Ekstrand <[email protected]> | 2014-09-16 15:16:20 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2014-09-30 10:29:15 -0700 |
commit | 8b0e4b387a2aeb28e32df5b680013338a841859b (patch) | |
tree | 924aefd9f335f28c22736fae1735e7a554f7032c /src/mesa/drivers/dri/i965/brw_eu.h | |
parent | 9e1f52a6e2b0277de063a8d8b07c5e520795a23b (diff) |
i965/fs: Add a an optional source to the FS_OPCODE_FB_WRITE instruction
Previously, we were use the base_mrf parameter of fs_inst to store the MRF
location. In preparation for doing FB writes from the GRF, we now also
allow you to set inst->base_mrf to -1 and provide a source register.
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.h b/src/mesa/drivers/dri/i965/brw_eu.h index c14bbd961ab..22d5a0acab3 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.h +++ b/src/mesa/drivers/dri/i965/brw_eu.h @@ -259,8 +259,8 @@ void brw_svb_write(struct brw_compile *p, void brw_fb_WRITE(struct brw_compile *p, int dispatch_width, - unsigned msg_reg_nr, - struct brw_reg src0, + struct brw_reg payload, + struct brw_reg implied_header, unsigned msg_control, unsigned binding_table_index, unsigned msg_length, |