You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed while working on #981 that our tile culling logic isn't as good as it can be.
In order for a tile to be visible, it must pass both the frustum test and the fog test. However, nothing requires that it pass both tests in the same view. So if a scene has two cameras, and in one a given tile is very far away, so it should be fog culled, and in the other the tile is nearby but behind the camera so it should be frustum culled, then this tile will be considered visible, when really it's not.
The text was updated successfully, but these errors were encountered:
I noticed while working on #981 that our tile culling logic isn't as good as it can be.
In order for a tile to be visible, it must pass both the frustum test and the fog test. However, nothing requires that it pass both tests in the same view. So if a scene has two cameras, and in one a given tile is very far away, so it should be fog culled, and in the other the tile is nearby but behind the camera so it should be frustum culled, then this tile will be considered visible, when really it's not.
The text was updated successfully, but these errors were encountered: