Start CCubeRenderer

This commit is contained in:
2025-01-29 23:34:30 -07:00
parent 9562b0dce0
commit 636613d434
10 changed files with 375 additions and 10 deletions

View File

@@ -99,4 +99,12 @@ typedef int BOOL;
#endif
#endif
#if (defined(__cplusplus) && __cplusplus >= 201103L) || defined(__clang__)
// Use C++11 auto keyword
#define AUTO(name, val) auto name = val
#else
// Use __typeof__ extension
#define AUTO(name, val) __typeof__(val) name = val
#endif
#endif // _DOLPHIN_TYPES