fix UBO buffer size
continuous-integration/drone/push Build is passing Details

main
cosmonaut 2024-01-13 23:45:07 -08:00
parent 05350a9332
commit 859fc3b9fa
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ typedef struct VulkanExtensions
#define ALLOCATION_INCREMENT 16000000 /* 16MB */
#define TRANSFER_BUFFER_STARTING_SIZE 8000000 /* 8MB */
#define POOLED_TRANSFER_BUFFER_SIZE 16000000 /* 16MB */
#define UBO_BUFFER_SIZE 1048576 /* 16MB */
#define UBO_BUFFER_SIZE 16777216 /* 16MB */
#define UBO_SECTION_SIZE 4096 /* 4KB */
#define DESCRIPTOR_POOL_STARTING_SIZE 128
#define DEFRAG_TIME 200