-
-
Notifications
You must be signed in to change notification settings - Fork 36k
Open
Labels
Milestone
Description
Spatial Index
Spatial index is necessary when dealing with large scenes, such large scenes are very common in games for example.
Motivation
If you want to do a raycast into the scene - currently you are stuck with a linear search, which is dominated by number of objects and polygons. A spatial index would enable a lot of internal optimizations, such as faster occlusion culling and sorting.
Direct application in the renderer:
Occlusion culling
Good occlusion culling is required for good performance. Point above would help here. There are a lot of techniques that can be utilized further here.
born as a result of this discussion: #13807
EliasHasle, fr1ll, schneiderfelipe and FrameMuse