add 'graphics.chunk-max-vertices-dense' setting

This commit is contained in:
MihailRis
2024-12-23 14:07:59 +03:00
parent 6a8afe2795
commit 096092303f
3 changed files with 16 additions and 6 deletions
+2
View File
@@ -71,6 +71,8 @@ struct GraphicsSettings {
IntegerSetting skyboxResolution {64 + 32, 64, 128};
/// @brief Chunk renderer vertices buffer capacity
IntegerSetting chunkMaxVertices {200'000, 0, 4'000'000};
/// @brief Chunk renderer vertices buffer capacity in dense render mode
IntegerSetting chunkMaxVerticesDense {800'000, 0, 8'000'000};
/// @brief Limit of chunk renderers count
IntegerSetting chunkMaxRenderers {6, -4, 32};
};