i965/fs: Set the builder group for emitting FB-write stencil/AA alpha

Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Acked-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
Jason Ekstrand
2015-06-18 15:58:59 -07:00
parent 438e9c8b88
commit 362eff7741
+1 -1
View File
@@ -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++;