mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-07 03:40:27 +01:00
i965: Fix remove_duplicate_mrf_writes so it can handle 24 MRFs in gen6
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
aee28a0aa3
commit
0c2add7751
1 changed files with 1 additions and 1 deletions
|
|
@ -2678,7 +2678,7 @@ fs_visitor::emit_repclear_shader()
|
|||
bool
|
||||
fs_visitor::remove_duplicate_mrf_writes()
|
||||
{
|
||||
fs_inst *last_mrf_move[16];
|
||||
fs_inst *last_mrf_move[BRW_MAX_MRF(devinfo->gen)];
|
||||
bool progress = false;
|
||||
|
||||
/* Need to update the MRF tracking for compressed instructions. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue