mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
radeon/llvm: Only support 512 constant registers on R600
This is necessary upcoming encoding changes, since we will only be using 9-bits for register encoding.
This commit is contained in:
parent
5abb1f8bde
commit
d525ed1a84
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@
|
|||
use strict;
|
||||
use warnings;
|
||||
|
||||
use constant CONST_REG_COUNT => 1024;
|
||||
use constant CONST_REG_COUNT => 512;
|
||||
use constant TEMP_REG_COUNT => 128;
|
||||
|
||||
my $CREG_MAX = CONST_REG_COUNT - 1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue