| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-01-02 | Update copyright to 2024 | Ray | |
| 2023-11-01 | REVIEWED: Potential code issues reported by CodeQL #3476 | Ray | |
| 2023-03-19 | Update core_loading_thread.c | Ray | |
| 2023-01-02 | Use explicit atomics (#2849) | Antonis Geralis | |
| * Use explicit atomics * missed one * use relaced ordering | |||
| 2023-01-01 | Update year to 2023 | Ray | |
| 2022-12-31 | core_loading_thread example join thread on completion (#2845) | Antonis Geralis | |
| * core_loading_thread example join thread on completion * error checking | |||
| 2022-09-16 | Fix typo (#2696) | murilluhenrique | |
| 2022-07-20 | REVIEWED: examples descriptions | Ray | |
| 2022-06-21 | Added new comment to examples | Ray | |
| 2019-05-20 | Review ALL examples | Ray | |
| 2019-05-14 | examples review | Ray | |
| Redesigns, deletes and renames Also noted authors propertly on contributed examples | |||
| 2019-05-04 | examples: core_loading_thread: fix race condition | Ahmad Fatoum | |
| A plain variable is insuffecient for inter-thread communication. Both the compiler and the processor may reorder accesses. The compiler could even cache dataLoaded with the result that STATE_FINISHED becomes unreachable. Fix this by using C11 atomic_bool, which guarantees sequential consistency. This fixes #827. | |||
| 2019-05-04 | examples: core_loading_thread: use symbolic names for state machine states | Ahmad Fatoum | |
| And while at it, use a switch clause to make the state machine structure clearer. | |||
| 2019-05-02 | new example: core_loading_thread | Ray | |
| Data loading in a second thread with progress bar in main thread | |||
