i965/blorp: Do not emit pma stall on gen9+

This was left out from the original gen8 upload introduction.

Signed-off-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Topi Pohjolainen 2016-04-21 12:31:37 +03:00
parent 81c1c481ed
commit 0020ca3c92

View file

@ -710,5 +710,7 @@ gen8_blorp_exec(struct brw_context *brw, const brw_blorp_params *params)
gen8_blorp_emit_vf_instancing_state(brw, 2);
gen8_blorp_emit_vf_state(brw);
gen7_blorp_emit_primitive(brw, params);
gen8_write_pma_stall_bits(brw, 0);
if (brw->gen < 9)
gen8_write_pma_stall_bits(brw, 0);
}