aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-24Leave alpha out of the fragment shader calculations in pass 1makamys
Improves FPS from 400 to 420 in savanna
2022-06-24Tweak some configsmakamys
2022-06-23Disable UV shortification by defaultmakamys
2022-06-23Make short UV even more accurate by rounding itmakamys
Previously the difference was extreme in GTNH, now it's only noticable if you're looking for it.
2022-06-23Add debug key shortcut to dump texture atlasmakamys
2022-06-23Make short UV more accuratemakamys
2022-06-23Make chunk simplification work againmakamys
2022-06-23Reload renderer when certain configs are changedmakamys
2022-06-23Make UV shortification disableablemakamys
2022-06-23Store UV as shortmakamys
Increases framerate a lil bit.
2022-06-23Don't store megaquad info if chunk simplification is disabledmakamys
Reduces memory usage by a bit. Doesn't seem to affect FPS.
2022-06-23Tweak configsmakamys
2022-06-23Update buildscriptmakamys
(Reimplements the MANIFEST.MF thing)
2022-06-23Revert "Put commit hash in MANIFEST.MF"makamys
This reverts commit 36f202c3e3863f19644cbe7044c921c9f541d575.
2022-06-23Reimplement face culling in a more lightweight waymakamys
| Test | Meshes rendered | Quads rendered | FPS (854x480) | FPS (1920x1080) | -------------------------------------------------------------------------------------- | No culling | 1159 | 601k | 580 | 510 | | Culling (old) | 3066 | 298k | 450 | 450 | | Culling (new) | 1679 | 298k | 530 | 530 |
2022-06-23Remove unused ChunkMesh constructormakamys
2022-06-23Move index buffer population to the Mesh classmakamys
2022-06-23Remove CullableMeshCollectionmakamys
2022-06-22Put commit hash in MANIFEST.MFmakamys
2022-06-22Make GC lazy when the buffer is barely fragmentedmakamys
I'm not sure how much this improves performance.
2022-06-22Fix renderer not getting destroyed properlymakamys
2022-06-22Fix `enabled` config option not working properly when disabledmakamys
2022-06-22Reload NeoRenderer when the world renderers are reloadedmakamys
2022-06-22Shut upmakamys
2022-06-22Unload regions when they are empty, not when they are "far" awaymakamys
2022-06-22Fix memory leakmakamys
Meshes wouldn't get unloaded properly if they were never sent to the GPU, or if they are transparent.
2022-06-22Increase GC rate if the remaining free space is lowmakamys
Fixes buffer getting full when FPS limit is set to 30
2022-06-22Count used VRAM properlymakamys
2022-06-22Use preprocessor macros in shadermakamys
Increases FPS from 300 to 340
2022-06-21Tweak quad count debug textmakamys
2022-06-21Add update check via MCLibmakamys
2022-06-21Add loicensemakamys
Gonna use LGPL3 for now
2022-06-21Start writing that readmemakamys
2022-06-21Don't merge non-rectanglesmakamys
Fixes Carpenter's Blocks incompatibility
2022-06-21Only count actually used VRAMmakamys
2022-06-21Optimize chunk simplificationmakamys
2022-06-21Update config commentmakamys
2022-06-21Recycle MeshQuad objectsmakamys
Reduces client thread's RAM allocation rate from ~80 MB/s to ~20 MB/s.
2022-06-21Disable unused lod stuff that was wasting a bunch of resourcesmakamys
2022-06-21Tweak config comments und defaultsmakamys
rip frog typo
2022-06-21Make face culling disableablemakamys
2022-06-21Try to optimize the cullingmakamys
2022-06-21Actually implement face cullingmakamys
2022-06-21Finish CullableMeshCollectionmakamys
2022-06-21Rewrite MeshQuad to store normal instead of planemakamys
2022-06-20Rewrite to use CullableMeshCollections in place of ChunkMeshesmakamys
2022-06-20Fix chunks sometimes going missing if OF fast render is changedmakamys
2022-06-20Clean up NeoRenderer#rendermakamys
2022-06-20Fix lava renderingmakamys
2022-06-20Remove some dead code from ChunkMeshmakamys