-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1059 from CesiumGS/doc-tile-selection-algorithm
Tile selection algorithm documentation, round 2
- Loading branch information
Showing
4 changed files
with
141 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
stateDiagram-v2 | ||
unloaded : Unloaded | ||
contentLoading : Content Loading | ||
contentLoaded : Content Loaded | ||
done : Done | ||
failed : Failed | ||
failedTemp : Failed Temporarily | ||
unloading : Unloading | ||
[*] --> unloaded | ||
unloaded --> contentLoading: Start Async Loading | ||
contentLoading --> contentLoaded: Done Async Loading | ||
contentLoading --> failed: Load Failed | ||
contentLoading --> failedTemp: Retry Later | ||
failedTemp --> contentLoading: Start Async Loading | ||
contentLoaded --> done: Main Thread Loading | ||
contentLoaded --> unloaded: Unload Tile Content | ||
done --> unloading: Start Unloading | ||
unloading --> unloaded: Done Unloading |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
# Developer Resources {#developer-resources} | ||
|
||
## Getting Started | ||
|
||
* \subpage developer-setup | ||
* \subpage multithreading | ||
* \subpage style-guide | ||
* \subpage contributing | ||
* \subpage contributing | ||
|
||
## Architecture of Cesium Native | ||
|
||
* \subpage multithreading | ||
* \subpage selection-algorithm-details | ||
* \subpage rendering-3d-tiles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters