From: Jason Ekstrand Date: Thu, 18 Jun 2015 22:58:59 +0000 (-0700) Subject: i965/fs: Set the builder group for emitting FB-write stencil/AA alpha X-Git-Tag: upstream/17.1.0~17946 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=362eff7741f9ca6e49074509120a2e6c03ef7ae6;p=platform%2Fupstream%2Fmesa.git i965/fs: Set the builder group for emitting FB-write stencil/AA alpha Reviewed-by: Iago Toral Quiroga Reviewed-by: Topi Pohjolainen Acked-by: Francisco Jerez --- diff --git a/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp b/src/mesa/drivers/dri/i965/brw_fs_visitor.cpp index 89eb717..69d3cfa 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++;