mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
ilo: fix fb height of HiZ ops
It was set to aligned width. It appears to be fine on GEN7+, but causes random hangs on GEN6.
This commit is contained in:
parent
76b11d15d3
commit
9a53f941c7
1 changed files with 1 additions and 1 deletions
|
|
@ -290,7 +290,7 @@ hiz_align_fb(struct ilo_blitter *blitter)
|
|||
|
||||
if (blitter->fb.width % align_w || blitter->fb.height % align_h) {
|
||||
blitter->fb.width = align(blitter->fb.width, align_w);
|
||||
blitter->fb.height = align(blitter->fb.width, align_h);
|
||||
blitter->fb.height = align(blitter->fb.height, align_h);
|
||||
|
||||
assert(!blitter->fb.dst.is_rt);
|
||||
zs_align_surface(blitter->ilo->dev, align_w, align_h,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue