nvk: Increase push constant space to 256B

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32433>
This commit is contained in:
Faith Ekstrand
2024-09-20 15:58:10 -05:00
committed by Marge Bot
parent 218fff2d5c
commit 0819e04f21
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ struct nvk_root_descriptor_table {
union nvk_buffer_descriptor dynamic_buffers[NVK_MAX_DYNAMIC_BUFFERS];
/* enfore alignment to 0x100 as needed pre pascal */
uint8_t __padding[0x38];
uint8_t __padding[0xb8];
};
/* helper macro for computing root descriptor byte offsets */
+1 -1
View File
@@ -11,7 +11,7 @@
#include "vk_util.h"
#define NVK_MAX_SETS 32
#define NVK_MAX_PUSH_SIZE 128
#define NVK_MAX_PUSH_SIZE 256
#define NVK_MAX_DYNAMIC_BUFFERS 64
#define NVK_MAX_RTS 8
#define NVK_MAX_SAMPLES 8