diff options
author | Jason Ekstrand <[email protected]> | 2015-06-18 15:58:59 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-06-30 16:11:19 -0700 |
commit | 362eff7741f9ca6e49074509120a2e6c03ef7ae6 (patch) | |
tree | b7fc9d9fc020251bd4158ec9f0c71b801b34d0f6 /src/mesa/drivers | |
parent | 438e9c8b88c8faf7cbc2a20b03c077342be214e3 (diff) |
i965/fs: Set the builder group for emitting FB-write stencil/AA alpha
Reviewed-by: Iago Toral Quiroga <[email protected]>
Reviewed-by: Topi Pohjolainen <[email protected]>
Acked-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_visitor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index 89eb71769a3..69d3cfa8897 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp @@ -1530,7 +1530,7 @@ fs_visitor::emit_single_fb_write(const fs_builder &bld, if (payload.aa_dest_stencil_reg) { sources[length] = fs_reg(GRF, alloc.allocate(1)); - bld.exec_all().annotate("FB write stencil/AA alpha") + bld.group(8, 0).exec_all().annotate("FB write stencil/AA alpha") .MOV(sources[length], fs_reg(brw_vec8_grf(payload.aa_dest_stencil_reg, 0))); length++; |