約91件1ページ目

日本語のみで絞り込む

条件を指定して検索しています。すべての条件を解除する

  • 最終更新日:1年以内
  • 2024/4/17 -AAssetManager is a wrapper to the low-level native implementation of the java AAssetManager, a pointer can be obtained using AAssetManager_fromJava(). The asset ...

    2024/1/11 -I tried to load the asset manager later in my application, by getting methods from the JNI and then executing them, but it seemed the asset manager would get ...

    2023/11/20 -I am using AAssetManager_fromJava to use Dalvik AssetManager object on native side. But since I need to load the JSON file in JNI_Onload, and it gets called ...

    2023/7/14 -... uses NDK AAssetManager_fromJava() // Note: In Android emulator, this seems to only work in main thread! JNIEnv *env = jniGetEnv(); jobject context ...

    2024/3/13 -auto manager = AAssetManager_fromJava(env, assetManager); fastgltf::setAndroidAssetManager(manager);. After this call LoadExternalBuffers and ...

    2023/7/19 -... AAssetManager_fromJava . The asset_manager_jni.h file comes with the Android NDK. Now to actually load some asset, we have a plethora of options. See the ...

    2023/6/30 -Superpacking is a method of optimal binary compression developed by Meta to help reduce the size of their Android APKs. This compression for APKs makes ...

    2024/6/8 -static AAssetManager * mgr = NULL; mgr = AAssetManager_fromJava( env, assetManager); AAsset* asset = AAssetManager_open(mgr, "embedding/0.txt ...

    2023/11/21 -如需查看渲染已解码图片的示例,请参阅Teapot 示例。 AAssetManager* nativeManager = AAssetManager_fromJava(env, jAssets); const char* file = // Filename AAsset ...

    2024/2/21 -... AAssetManager_fromJava(env, assetManager); // 打开Assets文件 AAsset *asset = AAssetManager_open(aAssetManager, "sample.txt", AASSET_MODE_BUFFER); // 读取 ...