[Feat] (MG_Util/BackendLoaders): Detect buffer storage extension.

This commit is contained in:
BZLZHH
2025-11-29 14:26:01 +08:00
parent 521bcadbee
commit 1a9f546309
3 changed files with 23 additions and 9 deletions
+2 -2
View File
@@ -39,8 +39,8 @@ namespace MobileGL {
MGLOG_D("Diligent Engine backend loaded");
#elif MOBILEGL_BACKEND == MOBILEGL_BACKEND_TYPE_DIRECT_GLES
MG_Util::BackendLoader::GLES::Init();
MGLOG_D("DirectGLES backend loaded, GLES version: %d.%d", MG_External::GLES::Caps::GLESVersion.Major,
MG_External::GLES::Caps::GLESVersion.Minor);
MGLOG_D("DirectGLES backend loaded, GLES version: %d.%d", MG_External::GLES::g_glesCaps.version.Major,
MG_External::GLES::g_glesCaps.version.Minor);
#else
MGLOG_W("Unknown backend, skipping backend initialization");
#endif