diff options
author | makamys <makamys@outlook.com> | 2022-06-08 00:54:34 +0200 |
---|---|---|
committer | makamys <makamys@outlook.com> | 2022-06-08 00:54:34 +0200 |
commit | 9e65d30314391bb175afe03ccef008012e05e746 (patch) | |
tree | 9d9f1f9e5efee9e67bf664e6e9b5160032e410f4 /src/main/java/makamys/lodmod/LODMod.java | |
parent | 8fddcbe0cbfd760c3d0f70864072edbb8cb09de0 (diff) | |
download | Neodymium-9e65d30314391bb175afe03ccef008012e05e746.tar.gz Neodymium-9e65d30314391bb175afe03ccef008012e05e746.tar.bz2 Neodymium-9e65d30314391bb175afe03ccef008012e05e746.zip |
Make VRAM buffer size configurable for real
Diffstat (limited to 'src/main/java/makamys/lodmod/LODMod.java')
-rw-r--r-- | src/main/java/makamys/lodmod/LODMod.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/makamys/lodmod/LODMod.java b/src/main/java/makamys/lodmod/LODMod.java index f86c695..34a380d 100644 --- a/src/main/java/makamys/lodmod/LODMod.java +++ b/src/main/java/makamys/lodmod/LODMod.java @@ -113,7 +113,7 @@ public class LODMod maxMeshesPerFrame = config.getInt("maxMeshesPerFrame", "render", -1, -1, Integer.MAX_VALUE, ""); sortFrequency = config.getInt("sortFrequency", "render", 1, 1, Integer.MAX_VALUE, ""); gcRate = config.getInt("gcRate", "render", 1, 1, Integer.MAX_VALUE, "Maximum number of meshes to relocate each frame."); - VRAMSize = config.getInt("VRAMSize", "render", 1, 1, Integer.MAX_VALUE, "VRAM buffer size."); + VRAMSize = config.getInt("VRAMSize", "render", 1024, 1, Integer.MAX_VALUE, "VRAM buffer size (MB)."); enableFog = config.getBoolean("enableFog", "render", true, ""); if(config.hasChanged()) { |