| 375 | } |
| 376 | |
| 377 | static AAssetManager* GetAndroidAssetManager() |
| 378 | { |
| 379 | struct android_app* app = dmAndroid::GetAndroidApp(); |
| 380 | if (!app) |
| 381 | return 0; |
| 382 | if (!app->activity) |
| 383 | return 0; |
| 384 | return app->activity->assetManager; |
| 385 | } |
| 386 | |
| 387 | bool ResourceExists(const char* path) |
| 388 | { |
no test coverage detected