Fixes Vulkan uniform buffer size after 9e371824c2

32 was accidentally added during debugging.
This commit is contained in:
Vladislav Belov 2026-04-25 11:55:12 +02:00
parent 68d8604c51
commit dd9124ae99
No known key found for this signature in database
GPG key ID: 353545E45DB9CCB3

View file

@ -1,4 +1,4 @@
/* Copyright (C) 2025 Wildfire Games.
/* Copyright (C) 2026 Wildfire Games.
* This file is part of 0 A.D.
*
* 0 A.D. is free software: you can redistribute it and/or modify
@ -63,7 +63,7 @@ namespace Vulkan
namespace
{
constexpr uint32_t UNIFORM_BUFFER_INITIAL_SIZE = 1024 * 1024 * 32;
constexpr uint32_t UNIFORM_BUFFER_INITIAL_SIZE = 1024 * 1024;
constexpr uint32_t FRAME_INPLACE_BUFFER_INITIAL_SIZE = 128 * 1024;
struct SBaseImageState