mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
panfrost: Allow up to 16 UBOs
This is the hardware max, as far as I can tell. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
parent
b670becb1e
commit
c1ca138475
1 changed files with 1 additions and 1 deletions
|
|
@ -319,7 +319,7 @@ panfrost_get_shader_param(struct pipe_screen *screen,
|
|||
return 16 * 1024 * sizeof(float);
|
||||
|
||||
case PIPE_SHADER_CAP_MAX_CONST_BUFFERS:
|
||||
return 4;
|
||||
return 16;
|
||||
|
||||
case PIPE_SHADER_CAP_TGSI_CONT_SUPPORTED:
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue