forked from mirrors/0ad
Fixes Vulkan uniform buffer size after 9e371824c2
32 was accidentally added during debugging.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user