mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
i965/fs: Enable register spilling on gen7 too.
It turns out the same messages work on gen7, we were just being paranoid. Fixes the penumbra shadows mode of Lightsmark since the register allocation fix. NOTE: This is a candidate for release branches. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
a7f46eadea
commit
93831a54c7
1 changed files with 0 additions and 2 deletions
|
|
@ -237,8 +237,6 @@ fs_visitor::assign_regs()
|
|||
|
||||
if (reg == -1) {
|
||||
fail("no register to spill\n");
|
||||
} else if (intel->gen >= 7) {
|
||||
fail("no spilling support on gen7 yet\n");
|
||||
} else if (c->dispatch_width == 16) {
|
||||
fail("no spilling support on 16-wide yet\n");
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue