[Chore] (MG_Util/Metrics): add fallback assertion when getting unknown GL type size

This commit is contained in:
2026-01-05 17:46:04 +08:00
parent 0a1e85e9e6
commit bdd4261a5a
@@ -114,6 +114,7 @@ namespace MobileGL {
return 4 * 3 * sizeof(GLdouble);
default:
MOBILEGL_ASSERT(false, "Unknown GL Type!");
return -1;
}
}