[Feat] (All): Continue building the basic structure.

This commit is contained in:
BZLZHH
2025-07-12 20:29:20 +08:00
parent 9542512209
commit 9194e1c97f
15 changed files with 4689 additions and 4 deletions
+20 -1
View File
@@ -10,4 +10,23 @@
#define MOBILEGL_LOG_FILE_PATH "/sdcard/MG/latest.log"
#elif
#define MOBILEGL_LOG_FILE_PATH ""
#endif
#endif
namespace MobileGL {
namespace MG_Config {
inline const String ProjectName = "MobileGL";
inline const String CoreName = "MobileGL Core";
inline const String CoreVendor = "MobileGL-Dev";
inline const Version CoreVersion = { 1, 0, 0, "-Dev" };
extern RendererInfo* RendererInfoPtr;
namespace Backend {
#define MOBILEGL_BACKEND MOBILEGL_BACKEND_UNKNOWN
namespace Diligent {
inline const MG_Backend::Diligent::SpecificBackendType SpecificBackend =
MG_Backend::Diligent::SpecificBackendType::Vulkan;
}
}
}
}