summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.h
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2015-06-03 21:07:52 +0300
committerFrancisco Jerez <currojerez@riseup.net>2015-06-09 15:18:33 +0300
commite32c16c47f7a3cf25e2b4d2f3b97d0f8f89669c0 (patch)
tree7b9bb487c8eb9eaf37a9fe5cc0efb03c960d03b5 /src/mesa/drivers/dri/i965/brw_fs.h
parent840cbef416b47fa1a92d6491cdd2895442f063bc (diff)
downloadexternal_mesa3d-e32c16c47f7a3cf25e2b4d2f3b97d0f8f89669c0.zip
external_mesa3d-e32c16c47f7a3cf25e2b4d2f3b97d0f8f89669c0.tar.gz
external_mesa3d-e32c16c47f7a3cf25e2b4d2f3b97d0f8f89669c0.tar.bz2
i965/fs: Migrate FS framebuffer writes to the IR builder.
The explicit call to fs_builder::group() in emit_single_fb_write() is required by the builder (otherwise the assertion in fs_builder::emit() would fail) because the subsequent LOAD_PAYLOAD and FB_WRITE instructions are in some cases emitted with a non-native execution width. The previous code would always use the channel enables for the first quarter, which is dubious but probably worked in practice because FB writes are never emitted inside non-uniform control flow and we don't pass the kill-pixel mask via predication in the cases where we have to fall-back to SIMD8 writes. Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.h b/src/mesa/drivers/dri/i965/brw_fs.h
index de37298..571d411 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.h
+++ b/src/mesa/drivers/dri/i965/brw_fs.h
@@ -330,7 +330,8 @@ public:
void setup_color_payload(fs_reg *dst, fs_reg color, unsigned components,
unsigned exec_size, bool use_2nd_half);
void emit_alpha_test();
- fs_inst *emit_single_fb_write(fs_reg color1, fs_reg color2,
+ fs_inst *emit_single_fb_write(const brw::fs_builder &bld,
+ fs_reg color1, fs_reg color2,
fs_reg src0_alpha, unsigned components,
unsigned exec_size, bool use_2nd_half = false);
void emit_fb_writes();