mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
st/nine: Increase maximum number of temp registers
With some test app I hit the limit.
As we allocate on demand (up to the maximum),
it is free to increase the limit.
Signed-off-by: Axel Davy <davyaxel0@gmail.com>
CC: <mesa-stable@lists.freedesktop.org>
(cherry picked from commit 7ae2509ce0)
This commit is contained in:
parent
ec9175a804
commit
4c34a42189
1 changed files with 1 additions and 1 deletions
|
|
@ -483,7 +483,7 @@ struct shader_translator
|
|||
struct ureg_dst a0;
|
||||
struct ureg_dst tS[8]; /* texture stage registers */
|
||||
struct ureg_dst tdst; /* scratch dst if we need extra modifiers */
|
||||
struct ureg_dst t[5]; /* scratch TEMPs */
|
||||
struct ureg_dst t[8]; /* scratch TEMPs */
|
||||
struct ureg_src vC[2]; /* PS color in */
|
||||
struct ureg_src vT[8]; /* PS texcoord in */
|
||||
struct ureg_dst rL[NINE_MAX_LOOP_DEPTH]; /* loop ctr */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue