package change and add libs
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
group 'com.example.holovox_filament'
|
group 'com.example.polyvox_filament'
|
||||||
version '1.0-SNAPSHOT'
|
version '1.0-SNAPSHOT'
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
rootProject.name = 'holovox_filament'
|
rootProject.name = 'polyvox_filament'
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.example.holovox_filament">
|
package="com.example.polyvox_filament">
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|||||||
@@ -0,0 +1,35 @@
|
|||||||
|
package com.example.polyvox_filament
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull
|
||||||
|
|
||||||
|
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
||||||
|
import io.flutter.plugin.common.MethodCall
|
||||||
|
import io.flutter.plugin.common.MethodChannel
|
||||||
|
import io.flutter.plugin.common.MethodChannel.MethodCallHandler
|
||||||
|
import io.flutter.plugin.common.MethodChannel.Result
|
||||||
|
|
||||||
|
/** PolyvoxFilamentPlugin */
|
||||||
|
class PolyvoxFilamentPlugin: FlutterPlugin, MethodCallHandler {
|
||||||
|
/// The MethodChannel that will the communication between Flutter and native Android
|
||||||
|
///
|
||||||
|
/// This local reference serves to register the plugin with the Flutter Engine and unregister it
|
||||||
|
/// when the Flutter Engine is detached from the Activity
|
||||||
|
private lateinit var channel : MethodChannel
|
||||||
|
|
||||||
|
override fun onAttachedToEngine(@NonNull flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
|
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "polyvox_filament")
|
||||||
|
channel.setMethodCallHandler(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onMethodCall(@NonNull call: MethodCall, @NonNull result: Result) {
|
||||||
|
if (call.method == "getPlatformVersion") {
|
||||||
|
result.success("Android ${android.os.Build.VERSION.RELEASE}")
|
||||||
|
} else {
|
||||||
|
result.notImplemented()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDetachedFromEngine(@NonNull binding: FlutterPlugin.FlutterPluginBinding) {
|
||||||
|
channel.setMethodCallHandler(null)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
# holovox_filament_example
|
# polyvox_filament_example
|
||||||
|
|
||||||
Demonstrates how to use the holovox_filament plugin.
|
Demonstrates how to use the polyvox_filament plugin.
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
|
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ android {
|
|||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||||
applicationId "com.example.holovox_filament_example"
|
applicationId "com.example.polyvox_filament_example"
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode flutterVersionCode.toInteger()
|
versionCode flutterVersionCode.toInteger()
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.example.holovox_filament_example">
|
package="com.example.polyvox_filament_example">
|
||||||
<!-- Flutter needs it to communicate with the running application
|
<!-- Flutter needs it to communicate with the running application
|
||||||
to allow setting breakpoints, to provide hot reload, etc.
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
-->
|
-->
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.example.holovox_filament_example">
|
package="com.example.polyvox_filament_example">
|
||||||
<application
|
<application
|
||||||
android:label="holovox_filament_example"
|
android:label="polyvox_filament_example"
|
||||||
android:icon="@mipmap/ic_launcher">
|
android:icon="@mipmap/ic_launcher">
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
package com.example.holovox_filament_example
|
|
||||||
|
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
|
||||||
|
|
||||||
class MainActivity: FlutterActivity() {
|
|
||||||
}
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package com.example.holovox_filament_example
|
package com.example.polyvox_filament_example
|
||||||
|
|
||||||
import io.flutter.embedding.android.FlutterActivity
|
import io.flutter.embedding.android.FlutterActivity
|
||||||
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.example.holovox_filament_example">
|
package="com.example.polyvox_filament_example">
|
||||||
<!-- Flutter needs it to communicate with the running application
|
<!-- Flutter needs it to communicate with the running application
|
||||||
to allow setting breakpoints, to provide hot reload, etc.
|
to allow setting breakpoints, to provide hot reload, etc.
|
||||||
-->
|
-->
|
||||||
|
|||||||
@@ -10,6 +10,26 @@
|
|||||||
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
||||||
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
||||||
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
|
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
|
||||||
|
840FCC1E274298BB008E5682 /* libutils.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC12274298BA008E5682 /* libutils.a */; };
|
||||||
|
840FCC2A27429A42008E5682 /* libcamutils.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC13274298BA008E5682 /* libcamutils.a */; };
|
||||||
|
840FCC2B27429A42008E5682 /* libfilabridge.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC16274298BB008E5682 /* libfilabridge.a */; };
|
||||||
|
840FCC2C27429A42008E5682 /* libfilaflat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC17274298BB008E5682 /* libfilaflat.a */; };
|
||||||
|
840FCC2E27429A42008E5682 /* libfilameshio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC19274298BB008E5682 /* libfilameshio.a */; };
|
||||||
|
840FCC2F27429A42008E5682 /* libgeometry.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC1A274298BB008E5682 /* libgeometry.a */; };
|
||||||
|
840FCC3027429A42008E5682 /* libgltfio_core.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC18274298BB008E5682 /* libgltfio_core.a */; };
|
||||||
|
840FCC3127429A42008E5682 /* libgltfio_resources_lite.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC1B274298BB008E5682 /* libgltfio_resources_lite.a */; };
|
||||||
|
840FCC3227429A42008E5682 /* libgltfio_resources.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC1D274298BB008E5682 /* libgltfio_resources.a */; };
|
||||||
|
840FCC3327429A42008E5682 /* libmath.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC1C274298BB008E5682 /* libmath.a */; };
|
||||||
|
840FCC3427429A42008E5682 /* libmathio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC14274298BA008E5682 /* libmathio.a */; };
|
||||||
|
840FCC3927429B1F008E5682 /* libviewer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC3527429B1F008E5682 /* libviewer.a */; };
|
||||||
|
840FCC3A27429B1F008E5682 /* libfilament-iblprefilter.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC3627429B1F008E5682 /* libfilament-iblprefilter.a */; };
|
||||||
|
840FCC3B27429B1F008E5682 /* libibl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC3727429B1F008E5682 /* libibl.a */; };
|
||||||
|
840FCC3C27429B1F008E5682 /* libimage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC3827429B1F008E5682 /* libimage.a */; };
|
||||||
|
840FCC3F27429BEC008E5682 /* libbackend.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC3D27429BEC008E5682 /* libbackend.a */; };
|
||||||
|
840FCC4027429BEC008E5682 /* libfilament.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC3E27429BEC008E5682 /* libfilament.a */; };
|
||||||
|
840FCC4227429C5B008E5682 /* libdracodec.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 840FCC4127429C5B008E5682 /* libdracodec.a */; };
|
||||||
|
8444BD14275320B200A5921D /* libOGLCompiler.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8444BD12275320B100A5921D /* libOGLCompiler.a */; };
|
||||||
|
8444BD15275320B200A5921D /* libOSDependent.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8444BD13275320B200A5921D /* libOSDependent.a */; };
|
||||||
8A41CA36A92CBF01E35DB723 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 729293464FDAFA80294C03ED /* Pods_Runner.framework */; };
|
8A41CA36A92CBF01E35DB723 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 729293464FDAFA80294C03ED /* Pods_Runner.framework */; };
|
||||||
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
||||||
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
||||||
@@ -38,6 +58,27 @@
|
|||||||
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
||||||
797D1F14B06B2A55521439EC /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
797D1F14B06B2A55521439EC /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
||||||
|
840FCC12274298BA008E5682 /* libutils.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libutils.a; path = ../../ios/lib/libutils.a; sourceTree = "<group>"; };
|
||||||
|
840FCC13274298BA008E5682 /* libcamutils.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcamutils.a; path = ../../ios/lib/libcamutils.a; sourceTree = "<group>"; };
|
||||||
|
840FCC14274298BA008E5682 /* libmathio.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libmathio.a; path = ../../ios/lib/libmathio.a; sourceTree = "<group>"; };
|
||||||
|
840FCC15274298BA008E5682 /* libfilamat.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libfilamat.a; path = ../../ios/lib/libfilamat.a; sourceTree = "<group>"; };
|
||||||
|
840FCC16274298BB008E5682 /* libfilabridge.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libfilabridge.a; path = ../../ios/lib/libfilabridge.a; sourceTree = "<group>"; };
|
||||||
|
840FCC17274298BB008E5682 /* libfilaflat.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libfilaflat.a; path = ../../ios/lib/libfilaflat.a; sourceTree = "<group>"; };
|
||||||
|
840FCC18274298BB008E5682 /* libgltfio_core.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgltfio_core.a; path = ../../ios/lib/libgltfio_core.a; sourceTree = "<group>"; };
|
||||||
|
840FCC19274298BB008E5682 /* libfilameshio.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libfilameshio.a; path = ../../ios/lib/libfilameshio.a; sourceTree = "<group>"; };
|
||||||
|
840FCC1A274298BB008E5682 /* libgeometry.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgeometry.a; path = ../../ios/lib/libgeometry.a; sourceTree = "<group>"; };
|
||||||
|
840FCC1B274298BB008E5682 /* libgltfio_resources_lite.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgltfio_resources_lite.a; path = ../../ios/lib/libgltfio_resources_lite.a; sourceTree = "<group>"; };
|
||||||
|
840FCC1C274298BB008E5682 /* libmath.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libmath.a; path = ../../ios/lib/libmath.a; sourceTree = "<group>"; };
|
||||||
|
840FCC1D274298BB008E5682 /* libgltfio_resources.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libgltfio_resources.a; path = ../../ios/lib/libgltfio_resources.a; sourceTree = "<group>"; };
|
||||||
|
840FCC3527429B1F008E5682 /* libviewer.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libviewer.a; path = ../../ios/lib/libviewer.a; sourceTree = "<group>"; };
|
||||||
|
840FCC3627429B1F008E5682 /* libfilament-iblprefilter.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libfilament-iblprefilter.a"; path = "../../ios/lib/libfilament-iblprefilter.a"; sourceTree = "<group>"; };
|
||||||
|
840FCC3727429B1F008E5682 /* libibl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libibl.a; path = ../../ios/lib/libibl.a; sourceTree = "<group>"; };
|
||||||
|
840FCC3827429B1F008E5682 /* libimage.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libimage.a; path = ../../ios/lib/libimage.a; sourceTree = "<group>"; };
|
||||||
|
840FCC3D27429BEC008E5682 /* libbackend.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libbackend.a; path = ../../ios/lib/libbackend.a; sourceTree = "<group>"; };
|
||||||
|
840FCC3E27429BEC008E5682 /* libfilament.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libfilament.a; path = ../../ios/lib/libfilament.a; sourceTree = "<group>"; };
|
||||||
|
840FCC4127429C5B008E5682 /* libdracodec.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libdracodec.a; path = ../../ios/lib/libdracodec.a; sourceTree = "<group>"; };
|
||||||
|
8444BD12275320B100A5921D /* libOGLCompiler.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libOGLCompiler.a; path = ../../ios/lib/libOGLCompiler.a; sourceTree = "<group>"; };
|
||||||
|
8444BD13275320B200A5921D /* libOSDependent.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libOSDependent.a; path = ../../ios/lib/libOSDependent.a; sourceTree = "<group>"; };
|
||||||
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
||||||
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
||||||
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
@@ -54,6 +95,26 @@
|
|||||||
isa = PBXFrameworksBuildPhase;
|
isa = PBXFrameworksBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
|
8444BD14275320B200A5921D /* libOGLCompiler.a in Frameworks */,
|
||||||
|
8444BD15275320B200A5921D /* libOSDependent.a in Frameworks */,
|
||||||
|
840FCC4227429C5B008E5682 /* libdracodec.a in Frameworks */,
|
||||||
|
840FCC3F27429BEC008E5682 /* libbackend.a in Frameworks */,
|
||||||
|
840FCC4027429BEC008E5682 /* libfilament.a in Frameworks */,
|
||||||
|
840FCC3927429B1F008E5682 /* libviewer.a in Frameworks */,
|
||||||
|
840FCC3A27429B1F008E5682 /* libfilament-iblprefilter.a in Frameworks */,
|
||||||
|
840FCC3B27429B1F008E5682 /* libibl.a in Frameworks */,
|
||||||
|
840FCC3C27429B1F008E5682 /* libimage.a in Frameworks */,
|
||||||
|
840FCC2A27429A42008E5682 /* libcamutils.a in Frameworks */,
|
||||||
|
840FCC2B27429A42008E5682 /* libfilabridge.a in Frameworks */,
|
||||||
|
840FCC2C27429A42008E5682 /* libfilaflat.a in Frameworks */,
|
||||||
|
840FCC2E27429A42008E5682 /* libfilameshio.a in Frameworks */,
|
||||||
|
840FCC2F27429A42008E5682 /* libgeometry.a in Frameworks */,
|
||||||
|
840FCC3027429A42008E5682 /* libgltfio_core.a in Frameworks */,
|
||||||
|
840FCC3127429A42008E5682 /* libgltfio_resources_lite.a in Frameworks */,
|
||||||
|
840FCC3227429A42008E5682 /* libgltfio_resources.a in Frameworks */,
|
||||||
|
840FCC3327429A42008E5682 /* libmath.a in Frameworks */,
|
||||||
|
840FCC3427429A42008E5682 /* libmathio.a in Frameworks */,
|
||||||
|
840FCC1E274298BB008E5682 /* libutils.a in Frameworks */,
|
||||||
8A41CA36A92CBF01E35DB723 /* Pods_Runner.framework in Frameworks */,
|
8A41CA36A92CBF01E35DB723 /* Pods_Runner.framework in Frameworks */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
@@ -119,6 +180,27 @@
|
|||||||
F66758AA6E5A6218A5D00433 /* Frameworks */ = {
|
F66758AA6E5A6218A5D00433 /* Frameworks */ = {
|
||||||
isa = PBXGroup;
|
isa = PBXGroup;
|
||||||
children = (
|
children = (
|
||||||
|
8444BD12275320B100A5921D /* libOGLCompiler.a */,
|
||||||
|
8444BD13275320B200A5921D /* libOSDependent.a */,
|
||||||
|
840FCC4127429C5B008E5682 /* libdracodec.a */,
|
||||||
|
840FCC3D27429BEC008E5682 /* libbackend.a */,
|
||||||
|
840FCC3E27429BEC008E5682 /* libfilament.a */,
|
||||||
|
840FCC3627429B1F008E5682 /* libfilament-iblprefilter.a */,
|
||||||
|
840FCC3727429B1F008E5682 /* libibl.a */,
|
||||||
|
840FCC3827429B1F008E5682 /* libimage.a */,
|
||||||
|
840FCC3527429B1F008E5682 /* libviewer.a */,
|
||||||
|
840FCC13274298BA008E5682 /* libcamutils.a */,
|
||||||
|
840FCC16274298BB008E5682 /* libfilabridge.a */,
|
||||||
|
840FCC17274298BB008E5682 /* libfilaflat.a */,
|
||||||
|
840FCC15274298BA008E5682 /* libfilamat.a */,
|
||||||
|
840FCC19274298BB008E5682 /* libfilameshio.a */,
|
||||||
|
840FCC1A274298BB008E5682 /* libgeometry.a */,
|
||||||
|
840FCC18274298BB008E5682 /* libgltfio_core.a */,
|
||||||
|
840FCC1B274298BB008E5682 /* libgltfio_resources_lite.a */,
|
||||||
|
840FCC1D274298BB008E5682 /* libgltfio_resources.a */,
|
||||||
|
840FCC1C274298BB008E5682 /* libmath.a */,
|
||||||
|
840FCC14274298BA008E5682 /* libmathio.a */,
|
||||||
|
840FCC12274298BA008E5682 /* libutils.a */,
|
||||||
729293464FDAFA80294C03ED /* Pods_Runner.framework */,
|
729293464FDAFA80294C03ED /* Pods_Runner.framework */,
|
||||||
);
|
);
|
||||||
name = Frameworks;
|
name = Frameworks;
|
||||||
@@ -154,7 +236,7 @@
|
|||||||
97C146E61CF9000F007C117D /* Project object */ = {
|
97C146E61CF9000F007C117D /* Project object */ = {
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
attributes = {
|
attributes = {
|
||||||
LastUpgradeCheck = 1020;
|
LastUpgradeCheck = 1310;
|
||||||
ORGANIZATIONNAME = "";
|
ORGANIZATIONNAME = "";
|
||||||
TargetAttributes = {
|
TargetAttributes = {
|
||||||
97C146ED1CF9000F007C117D = {
|
97C146ED1CF9000F007C117D = {
|
||||||
@@ -303,6 +385,7 @@
|
|||||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||||
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||||
@@ -323,7 +406,7 @@
|
|||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
STRIP_INSTALLED_PRODUCT = NO;
|
STRIP_INSTALLED_PRODUCT = NO;
|
||||||
@@ -349,8 +432,12 @@
|
|||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/lib",
|
||||||
|
);
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.example.holovoxAvatarExample;
|
PRODUCT_BUNDLE_IDENTIFIER = "app.polyvox.filament-example";
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
STRIP_INSTALLED_PRODUCT = NO;
|
STRIP_INSTALLED_PRODUCT = NO;
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||||
@@ -382,6 +469,7 @@
|
|||||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||||
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||||
@@ -408,7 +496,8 @@
|
|||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
|
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
||||||
MTL_ENABLE_DEBUG_INFO = YES;
|
MTL_ENABLE_DEBUG_INFO = YES;
|
||||||
ONLY_ACTIVE_ARCH = YES;
|
ONLY_ACTIVE_ARCH = YES;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
@@ -440,6 +529,7 @@
|
|||||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||||
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||||
@@ -460,7 +550,8 @@
|
|||||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
||||||
|
LIBRARY_SEARCH_PATHS = "$(inherited)";
|
||||||
MTL_ENABLE_DEBUG_INFO = NO;
|
MTL_ENABLE_DEBUG_INFO = NO;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
STRIP_INSTALLED_PRODUCT = NO;
|
STRIP_INSTALLED_PRODUCT = NO;
|
||||||
@@ -488,8 +579,12 @@
|
|||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/lib",
|
||||||
|
);
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.example.holovoxAvatarExample;
|
PRODUCT_BUNDLE_IDENTIFIER = "app.polyvox.filament-example";
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
STRIP_INSTALLED_PRODUCT = NO;
|
STRIP_INSTALLED_PRODUCT = NO;
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||||
@@ -515,8 +610,12 @@
|
|||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/lib",
|
||||||
|
);
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.example.holovoxAvatarExample;
|
PRODUCT_BUNDLE_IDENTIFIER = "app.polyvox.filament-example";
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
STRIP_INSTALLED_PRODUCT = NO;
|
STRIP_INSTALLED_PRODUCT = NO;
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Scheme
|
<Scheme
|
||||||
LastUpgradeVersion = "1020"
|
LastUpgradeVersion = "1310"
|
||||||
version = "1.3">
|
version = "1.3">
|
||||||
<BuildAction
|
<BuildAction
|
||||||
parallelizeBuildables = "YES"
|
parallelizeBuildables = "YES"
|
||||||
@@ -27,8 +27,6 @@
|
|||||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||||
<Testables>
|
|
||||||
</Testables>
|
|
||||||
<MacroExpansion>
|
<MacroExpansion>
|
||||||
<BuildableReference
|
<BuildableReference
|
||||||
BuildableIdentifier = "primary"
|
BuildableIdentifier = "primary"
|
||||||
@@ -38,8 +36,8 @@
|
|||||||
ReferencedContainer = "container:Runner.xcodeproj">
|
ReferencedContainer = "container:Runner.xcodeproj">
|
||||||
</BuildableReference>
|
</BuildableReference>
|
||||||
</MacroExpansion>
|
</MacroExpansion>
|
||||||
<AdditionalOptions>
|
<Testables>
|
||||||
</AdditionalOptions>
|
</Testables>
|
||||||
</TestAction>
|
</TestAction>
|
||||||
<LaunchAction
|
<LaunchAction
|
||||||
buildConfiguration = "Debug"
|
buildConfiguration = "Debug"
|
||||||
@@ -61,8 +59,6 @@
|
|||||||
ReferencedContainer = "container:Runner.xcodeproj">
|
ReferencedContainer = "container:Runner.xcodeproj">
|
||||||
</BuildableReference>
|
</BuildableReference>
|
||||||
</BuildableProductRunnable>
|
</BuildableProductRunnable>
|
||||||
<AdditionalOptions>
|
|
||||||
</AdditionalOptions>
|
|
||||||
</LaunchAction>
|
</LaunchAction>
|
||||||
<ProfileAction
|
<ProfileAction
|
||||||
buildConfiguration = "Profile"
|
buildConfiguration = "Profile"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
<key>CFBundleInfoDictionaryVersion</key>
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
<string>6.0</string>
|
<string>6.0</string>
|
||||||
<key>CFBundleName</key>
|
<key>CFBundleName</key>
|
||||||
<string>holovox_filament_example</string>
|
<string>polyvox_filament_example</string>
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: holovox_filament_example
|
name: polyvox_filament_example
|
||||||
description: Demonstrates how to use the holovox_filament plugin.
|
description: Demonstrates how to use the polyvox_filament plugin.
|
||||||
|
|
||||||
# The following line prevents the package from being accidentally published to
|
# The following line prevents the package from being accidentally published to
|
||||||
# pub.dev using `flutter pub publish`. This is preferred for private packages.
|
# pub.dev using `flutter pub publish`. This is preferred for private packages.
|
||||||
@@ -18,7 +18,7 @@ dependencies:
|
|||||||
flutter:
|
flutter:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
|
||||||
holovox_filament:
|
polyvox_filament:
|
||||||
path: ../
|
path: ../
|
||||||
|
|
||||||
cupertino_icons: ^1.0.2
|
cupertino_icons: ^1.0.2
|
||||||
@@ -26,14 +26,9 @@ dependencies:
|
|||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
|
|
||||||
# The "flutter_lints" package below contains a set of recommended lints to
|
|
||||||
# encourage good coding practices. The lint set provided by the package is
|
|
||||||
# activated in the `analysis_options.yaml` file located at the root of your
|
|
||||||
# package. See that file for information about deactivating specific lint
|
|
||||||
# rules and activating additional ones.
|
|
||||||
flutter_lints: ^1.0.0
|
flutter_lints: ^1.0.0
|
||||||
|
|
||||||
|
|
||||||
# For information on the generic Dart part of this file, see the
|
# For information on the generic Dart part of this file, see the
|
||||||
# following page: https://dart.dev/tools/pub/pubspec
|
# following page: https://dart.dev/tools/pub/pubspec
|
||||||
|
|
||||||
|
|||||||
3
ios/lib/libOGLCompiler.a
Normal file
3
ios/lib/libOGLCompiler.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2faa3c1716a1da8bbd4ffb10fdf24162ce1e7ba78be0f7f75ec6041133b61b31
|
||||||
|
size 7912
|
||||||
3
ios/lib/libOSDependent.a
Normal file
3
ios/lib/libOSDependent.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b3ef274d0f92ac77e028ffcbe0dffcd9b20b44e71b01be9edc387e4bc6d4675b
|
||||||
|
size 15224
|
||||||
3
ios/lib/libSPIRV-Tools-link.a
Normal file
3
ios/lib/libSPIRV-Tools-link.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0427cdda89024752dce8bb59be7da81abe28677a23e3aba510deea40bb6e58df
|
||||||
|
size 7209912
|
||||||
3
ios/lib/libSPIRV-Tools-opt.a
Normal file
3
ios/lib/libSPIRV-Tools-opt.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:212f81879691d1fe205e5e97c81e4ebbfb367d684b5349acf36c4b9d7f48a3e4
|
||||||
|
size 566729104
|
||||||
3
ios/lib/libSPIRV-Tools-reduce.a
Normal file
3
ios/lib/libSPIRV-Tools-reduce.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:16db7dedd5e6e143c4b28228c345222a6b478f6d5f416989dc1167405faf1a61
|
||||||
|
size 138091336
|
||||||
3
ios/lib/libSPIRV-Tools.a
Normal file
3
ios/lib/libSPIRV-Tools.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2ce4e323da2c8ecd3715d9e2451b4f70e0f99f69d1ef6c73f4b207c117c15a01
|
||||||
|
size 119018600
|
||||||
3
ios/lib/libSPIRV.a
Normal file
3
ios/lib/libSPIRV.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:44ebf36681bc0dbac2f3ad88ccbe165a99a87a761bc163769519c95bed53121b
|
||||||
|
size 12947112
|
||||||
3
ios/lib/libSPVRemapper.a
Normal file
3
ios/lib/libSPVRemapper.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8a581e9901cfbb0b0cc54b7c9e463e1858f3b8cee727b430fba64f6be0c479ca
|
||||||
|
size 5517256
|
||||||
3
ios/lib/libbackend.a
Normal file
3
ios/lib/libbackend.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:11e90e7d9e6d6915d8ca4cb060f43872791e23dadf48cf44baf5b03bb4fef9bc
|
||||||
|
size 2304656
|
||||||
3
ios/lib/libbackend_test.a
Normal file
3
ios/lib/libbackend_test.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ea46b8236ae58c2c6bf00de5d2901fd6ba8a3521b4ab4222c915e2256d271d36
|
||||||
|
size 11289856
|
||||||
3
ios/lib/libbenchmark.a
Normal file
3
ios/lib/libbenchmark.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c1d7b64227a24fa5fa7d82a7bc38f9dc7d1780010711be72b0c95b5c8ba4129e
|
||||||
|
size 7854928
|
||||||
3
ios/lib/libbenchmark_main.a
Normal file
3
ios/lib/libbenchmark_main.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2db8303ca029a06610f1ef5c8266ba4e473a24f9b235a5ca61b0c6f8d1c1d7f6
|
||||||
|
size 20160
|
||||||
3
ios/lib/libcamutils.a
Normal file
3
ios/lib/libcamutils.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:20c63c31da38a6e04d490517e36ecb3706de0c072069c91888f68657cbadbc44
|
||||||
|
size 80736
|
||||||
3
ios/lib/libcivetweb.a
Normal file
3
ios/lib/libcivetweb.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:69fc99b7a71f89d86cb1b616264ac49ca8a861789e735d8a0cf4b5980d61b0f2
|
||||||
|
size 613712
|
||||||
3
ios/lib/libdracodec.a
Normal file
3
ios/lib/libdracodec.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b181494750fc50d2a161e961d8ccdb72c931258da98a7ad807401134b37b4fe0
|
||||||
|
size 3916120
|
||||||
3
ios/lib/libfilabridge.a
Normal file
3
ios/lib/libfilabridge.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bc40c9d0a555ec154f2c359df4eb0af2bacffe1dcad1fe2db38625d59e0ccb4e
|
||||||
|
size 177992
|
||||||
3
ios/lib/libfilaflat.a
Normal file
3
ios/lib/libfilaflat.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:196f0b001ba0c408d09c44ce34001c5d310b6b2026965d8cbcc53dda22ce00a0
|
||||||
|
size 109872
|
||||||
3
ios/lib/libfilagui.a
Normal file
3
ios/lib/libfilagui.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5294fe6de674bdf10f2528a040f78988fc1d7d6c3eb76a1b180b232f26f6f4e1
|
||||||
|
size 935608
|
||||||
3
ios/lib/libfilamat.a
Normal file
3
ios/lib/libfilamat.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:61f1940eefdda9723f55ff46839c85e76932a5a7499f130ef7265cd3c1f3c9de
|
||||||
|
size 50209608
|
||||||
3
ios/lib/libfilamat_combined.a
Normal file
3
ios/lib/libfilamat_combined.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9c18ca477be3ae5f806bad5d96393a7396f82d8826058afc6c3dcf2f3c49f200
|
||||||
|
size 822373504
|
||||||
3
ios/lib/libfilamat_lite.a
Normal file
3
ios/lib/libfilamat_lite.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:fc5514d3c056cf668dc531675df8f9c57a5330a80c039c52de273bd3d955e275
|
||||||
|
size 897496
|
||||||
3
ios/lib/libfilament-iblprefilter.a
Normal file
3
ios/lib/libfilament-iblprefilter.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:68547b1a33f82052a917b6fe64d8ef95b0c07c700143c1b61a5064f8ee135ef3
|
||||||
|
size 92568
|
||||||
3
ios/lib/libfilament.a
Normal file
3
ios/lib/libfilament.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a838f3161ee9449f1ef4168344c73f4e5db15b3ba2f45789a5a8fcdac10e8576
|
||||||
|
size 4397248
|
||||||
3
ios/lib/libfilameshio.a
Normal file
3
ios/lib/libfilameshio.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:d10e2a4528c75118e65c29660ef3104a658a1cd493e3a8cf792f422986941316
|
||||||
|
size 70552
|
||||||
3
ios/lib/libgeometry.a
Normal file
3
ios/lib/libgeometry.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:08ffcafebe8770c4a0b9bd5e44138c8e688138d4524a46e08d90be5e37cb7b29
|
||||||
|
size 63680
|
||||||
3
ios/lib/libgetopt.a
Normal file
3
ios/lib/libgetopt.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:87a223d8302b218b1a1d4c6c9640c4f3e2fb4475694d9552763b7bdd865eee54
|
||||||
|
size 17024
|
||||||
3
ios/lib/libglslang.a
Normal file
3
ios/lib/libglslang.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f185187cb100b8a6a5b6bfb3b1ca9050cc401dcd19c2fe1371eadbc6ee2775dc
|
||||||
|
size 64417576
|
||||||
3
ios/lib/libgltfio_core.a
Normal file
3
ios/lib/libgltfio_core.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c7bdbcc624e1c579ce5012056c985baee50d88cd1cf4c92b3b6b8a0bbc7e34aa
|
||||||
|
size 2125536
|
||||||
3
ios/lib/libgltfio_resources.a
Normal file
3
ios/lib/libgltfio_resources.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:84fb1fe335b227e11f22b25eb0ad325414f916e04f4ef8a52395aac1b5e29f07
|
||||||
|
size 6302744
|
||||||
3
ios/lib/libgltfio_resources_lite.a
Normal file
3
ios/lib/libgltfio_resources_lite.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:49931f747ee8f3bab1808c654836ac4b0a9ab541b1c4c3df957208a2969837d1
|
||||||
|
size 1171208
|
||||||
3
ios/lib/libgtest.a
Normal file
3
ios/lib/libgtest.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2c0143ebd1104445d81a5ad67a006dfae1be32482f6b0a9853134df00357bbee
|
||||||
|
size 2890608
|
||||||
3
ios/lib/libibl-lite.a
Normal file
3
ios/lib/libibl-lite.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9ea467954333f7b541663e7efc1377a0fe2170641035486baa5eb8bb220d0571
|
||||||
|
size 467736
|
||||||
3
ios/lib/libibl.a
Normal file
3
ios/lib/libibl.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ab3234fd2f23a339792e295ea4bc52e03365aa3b77360a8be76ecfbc66a5a7a3
|
||||||
|
size 563936
|
||||||
3
ios/lib/libimage.a
Normal file
3
ios/lib/libimage.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:425e24fc0a5b898be11df0649e105f7d806aad993e7eda6ca1ef8cb5623ef751
|
||||||
|
size 171288
|
||||||
3
ios/lib/libimgui.a
Normal file
3
ios/lib/libimgui.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a2c05493099298be585a61e97d603ea7189380235d39042de4f61cd5687ed9e5
|
||||||
|
size 2633392
|
||||||
3
ios/lib/libmath.a
Normal file
3
ios/lib/libmath.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:503aa5b3f0ac1eb3e781acc387b303ddc15602e9a0d24bdb308b0aa25a8d373b
|
||||||
|
size 1264
|
||||||
3
ios/lib/libmathio.a
Normal file
3
ios/lib/libmathio.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:a13205178065ba482ba932444bc319cd155086b75e6b0481dfcc59dcc9798b5d
|
||||||
|
size 222568
|
||||||
3
ios/lib/libmeshoptimizer.a
Normal file
3
ios/lib/libmeshoptimizer.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f8281835873be7620013024879f76498420248f738e0f05c33cdbac639f75240
|
||||||
|
size 160632
|
||||||
3
ios/lib/libshaders.a
Normal file
3
ios/lib/libshaders.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4385bc2ef9bb3b0b3087b0a6f3bb8b9b82b3fd8fdcf06129f3dc330a5de2ec07
|
||||||
|
size 108768
|
||||||
3
ios/lib/libsmol-v.a
Normal file
3
ios/lib/libsmol-v.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2d9f709c0bd355fb2ba1e0af4ec11c5ad99ccb3a84361346565360730f00d9f2
|
||||||
|
size 120696
|
||||||
3
ios/lib/libspirv-cross-core.a
Normal file
3
ios/lib/libspirv-cross-core.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3fb733790c862b884cc66af0388ad448e2f7b21abe512001b060619de8207b39
|
||||||
|
size 8709984
|
||||||
3
ios/lib/libspirv-cross-glsl.a
Normal file
3
ios/lib/libspirv-cross-glsl.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f16ac51ef9e7c77a5b4f53c3eb84c4c7f73c6aa7ab0b43d042428b3fb784e59d
|
||||||
|
size 6573200
|
||||||
3
ios/lib/libspirv-cross-msl.a
Normal file
3
ios/lib/libspirv-cross-msl.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8e845a3fcafa2a82684d35449aa2634a546496f89f9789dd62a6d9d295e95afb
|
||||||
|
size 18418288
|
||||||
3
ios/lib/libutils.a
Normal file
3
ios/lib/libutils.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c108ddb221f3aec50e3fb32cd7c03d37684f047e8e2515fd9a0575c5f643d94a
|
||||||
|
size 485496
|
||||||
3
ios/lib/libviewer.a
Normal file
3
ios/lib/libviewer.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f1916b3c12e0fae9384bf6a5d119c8bd063153eaddcabf5fa8bbd0b686b24977
|
||||||
|
size 766952
|
||||||
3
ios/lib/libvkshaders.a
Normal file
3
ios/lib/libvkshaders.a
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0f501302f68ea602952be75633a38ade3c7254ab0d755b5344635f5aaa56a856
|
||||||
|
size 4320
|
||||||
Reference in New Issue
Block a user