diff options
Diffstat (limited to 'minetest.conf.example')
| -rw-r--r-- | minetest.conf.example | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index b69d7764e..7f79ca493 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -695,6 +695,12 @@ # type: int # update_last_known = 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 +# type: enum values: bfs, loops +# occlusion_culler = bfs + # Use raytraced occlusion culling in the new culler. # This flag enables use of raytraced occlusion culling test # type: bool |
