Avoid multiple asset_manager definition on Android

Using TINYGLTF_IMPLEMENTATION to make the actual definition of the 'asset_manager' global variable.
This commit is contained in:
Serdar Kocdemir 2022-10-30 22:32:59 +00:00 committed by GitHub
parent 091a1fcc1a
commit 264ae4c131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -200,7 +200,11 @@ namespace tinygltf {
#ifdef __ANDROID__
#ifdef TINYGLTF_ANDROID_LOAD_FROM_ASSETS
#ifdef TINYGLTF_IMPLEMENTATION
AAssetManager *asset_manager = nullptr;
#else
extern AAssetManager *asset_manager;
#endif
#endif
#endif