mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 01:28:07 +02:00
i965: Make BLORP disable the NP Z PMA stall fix.
This may fix GPU hangs on Gen8. I don't know if it does though. Cc: mesa-stable@lists.freedesktop.org Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
d2590eb65f
commit
7a2b65a1d7
1 changed files with 4 additions and 0 deletions
|
|
@ -206,6 +206,10 @@ retry:
|
|||
|
||||
brw_emit_depth_stall_flushes(brw);
|
||||
|
||||
#if GEN_GEN == 8
|
||||
gen8_write_pma_stall_bits(brw, 0);
|
||||
#endif
|
||||
|
||||
blorp_emit(batch, GENX(3DSTATE_DRAWING_RECTANGLE), rect) {
|
||||
rect.ClippedDrawingRectangleXMax = MAX2(params->x1, params->x0) - 1;
|
||||
rect.ClippedDrawingRectangleYMax = MAX2(params->y1, params->y0) - 1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue