From 93898957b6c5862c6db0fa2555eaa5d3a0070e12 Mon Sep 17 00:00:00 2001 From: x2048 Date: Thu, 30 Mar 2023 00:10:23 +0200 Subject: Return 'loops' occlusion culler under a setting (#13352) * Add occlusion_culler setting to minetest.conf.example * Add raytraced occlusion culling to 'loops' algorithm --------- Co-authored-by: sfan5 --- builtin/settingtypes.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'builtin') diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt index 14d4df179..ea90c30d0 100644 --- a/builtin/settingtypes.txt +++ b/builtin/settingtypes.txt @@ -629,6 +629,11 @@ 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 for # client mesh sizes smaller than 4x4x4 map blocks. -- cgit v1.2.3