mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 15:20:17 +01:00
i965: Disable workaround flush for push constants on Broadwell.
If it wasn't necessary for Haswell, it's likely not to be necessary for Broadwell either. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
8618407d15
commit
eadabec4cd
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ gen7_emit_push_constant_state(struct brw_context *brw, unsigned vs_size,
|
|||
*
|
||||
* No such restriction exists for Haswell.
|
||||
*/
|
||||
if (!brw->is_haswell)
|
||||
if (brw->gen < 8 && !brw->is_haswell)
|
||||
gen7_emit_cs_stall_flush(brw);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue