Update README.md

Update doc.
pull/2311/head
Kim Kulling 2019-01-27 21:11:52 +01:00 committed by GitHub
parent 6295e4dbc4
commit 2432abacc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -1,7 +1,7 @@
Build Asset Importer Lib for Android Build Asset Importer Lib for Android
==================================== ====================================
This module provides a fascade for the io-stream-access to files behind the This module provides a fascade for the io-stream-access to files behind the android-asset-management within
android-asset-management within an Android native application. an Android-native application.
- It is built as a static library - It is built as a static library
- It requires Android NDK with android API > 9 support. - It requires Android NDK with android API > 9 support.
@ -20,6 +20,8 @@ A small example how to wrap assimp for Android:
#include <assimp/port/AndroidJNI/AndroidJNIIOSystem.h> #include <assimp/port/AndroidJNI/AndroidJNIIOSystem.h>
Assimp::Importer* importer = new Assimp::Importer(); Assimp::Importer* importer = new Assimp::Importer();
Assimp::AndroidJNIIOSystem* ioSystem = new Assimp::AndroidJNIIOSystem(app->activity); Assimp::AndroidJNIIOSystem *ioSystem = new Assimp::AndroidJNIIOSystem(app->activity);
importer->SetIOHandler(ioSystem); if ( nullptr != iosSystem ) {
importer->SetIOHandler(ioSystem);
}
``` ```