diff options
author | x2048 <codeforsmile@gmail.com> | 2023-01-23 10:58:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 10:58:29 +0100 |
commit | b8aaad4f1ef2e4b22cb7d47de9cb54068ccbbe18 (patch) | |
tree | 01051403f44111421bce18e9b363949a33666919 /builtin | |
parent | 84787962269bb170b3e9f76d2706cbfd2232586a (diff) | |
download | minetest-b8aaad4f1ef2e4b22cb7d47de9cb54068ccbbe18.tar.xz |
Remove the 'loops' occlusion culler (#13169)
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/settingtypes.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt index bc61962f5..ec8a8ce47 100644 --- a/builtin/settingtypes.txt +++ b/builtin/settingtypes.txt @@ -628,11 +628,6 @@ update_last_checked (Last update check) string # Ex: 5.5.0 is 005005000 update_last_known (Last known version update) int 0 -# Type of occlusion_culler -# "loops" is the legacy algorithm with nested loops and O(N^3) complexity -# "bfs" is the new algorithm based on breadth-first-search and side culling -occlusion_culler (Occlusion Culler) enum bfs bfs,loops - # Use raytraced occlusion culling in the new culler. # This flag enables use of raytraced occlusion culling test enable_raytraced_culling (Enable Raytraced Culling) bool true |