rename plugin from PolyvoxFilament to FlutterFilament
rename plugin from PolyvoxFilament to FlutterFilament
This commit is contained in:
@@ -8,7 +8,7 @@ Powers the [Polyvox](https://polyvox.app) and [odd-io](https://github.com/odd-io
|
||||
|
||||
This is still in beta: bugs/missing features are to be expected.
|
||||
|
||||
https://github.com/nmfisher/polyvox_filament/assets/7238578/abaed1c8-c97b-4999-97b2-39e85e0fa7dd
|
||||
https://github.com/nmfisher/flutter_filament/assets/7238578/abaed1c8-c97b-4999-97b2-39e85e0fa7dd
|
||||
|
||||
|
||||
|Feature|Supported|
|
||||
|
||||
8
android/.cxx/abi_configuration_3f421w4c.json
Normal file
8
android/.cxx/abi_configuration_3f421w4c.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"allAbis": [
|
||||
"arm64-v8a"
|
||||
],
|
||||
"validAbis": [
|
||||
"ARM64_V8A"
|
||||
]
|
||||
}
|
||||
1
android/.cxx/abi_configuration_3f421w4c.log
Normal file
1
android/.cxx/abi_configuration_3f421w4c.log
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
||||
20
android/.cxx/abi_configuration_3f421w4c_key.json
Normal file
20
android/.cxx/abi_configuration_3f421w4c_key.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"ndkHandlerSupportedAbis": [
|
||||
"ARMEABI_V7A",
|
||||
"ARM64_V8A",
|
||||
"X86",
|
||||
"X86_64"
|
||||
],
|
||||
"ndkHandlerDefaultAbis": [
|
||||
"ARMEABI_V7A",
|
||||
"ARM64_V8A",
|
||||
"X86",
|
||||
"X86_64"
|
||||
],
|
||||
"externalNativeBuildAbiFilters": [],
|
||||
"ndkConfigAbiFilters": [
|
||||
"arm64-v8a"
|
||||
],
|
||||
"splitsFilterAbis": [],
|
||||
"ideBuildOnlyTargetAbi": true
|
||||
}
|
||||
11
android/.cxx/ndk_locator_record_1q1i3ah3.json
Normal file
11
android/.cxx/ndk_locator_record_1q1i3ah3.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"ndk": "C:\\Users\\Nick\\AppData\\Local\\Android\\Sdk\\ndk\\25.2.9519653",
|
||||
"revision": {
|
||||
"mMajor": 25,
|
||||
"mMinor": 2,
|
||||
"mMicro": 9519653,
|
||||
"mPreview": 0,
|
||||
"mPrecision": "MICRO",
|
||||
"mPreviewSeparator": " "
|
||||
}
|
||||
}
|
||||
22
android/.cxx/ndk_locator_record_1q1i3ah3.log
Normal file
22
android/.cxx/ndk_locator_record_1q1i3ah3.log
Normal file
@@ -0,0 +1,22 @@
|
||||
[
|
||||
{
|
||||
"level": "INFO",
|
||||
"message": "android.ndkVersion from module build.gradle is [25.2.9519653]"
|
||||
},
|
||||
{
|
||||
"level": "INFO",
|
||||
"message": "android.ndkPath from module build.gradle is not set"
|
||||
},
|
||||
{
|
||||
"level": "INFO",
|
||||
"message": "ndk.dir in local.properties is not set"
|
||||
},
|
||||
{
|
||||
"level": "INFO",
|
||||
"message": "Not considering ANDROID_NDK_HOME because support was removed after deprecation period."
|
||||
},
|
||||
{
|
||||
"level": "INFO",
|
||||
"message": "sdkFolder is C:\\Users\\Nick\\AppData\\Local\\Android\\Sdk"
|
||||
}
|
||||
]
|
||||
17
android/.cxx/ndk_locator_record_1q1i3ah3_key.json
Normal file
17
android/.cxx/ndk_locator_record_1q1i3ah3_key.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"ndkVersionFromDsl": "25.2.9519653",
|
||||
"sdkFolder": "C:\\Users\\Nick\\AppData\\Local\\Android\\Sdk",
|
||||
"sideBySideNdkFolderNames": [
|
||||
"19.2.5345600",
|
||||
"21.1.6352462",
|
||||
"21.4.7075529",
|
||||
"22.0.7026061",
|
||||
"22.1.7171670",
|
||||
"23.0.7599858",
|
||||
"23.1.7779620",
|
||||
"23.2.8568313",
|
||||
"24.0.8215888",
|
||||
"25.1.8937393",
|
||||
"25.2.9519653"
|
||||
]
|
||||
}
|
||||
@@ -7,9 +7,9 @@ include_directories(src/main/cpp)
|
||||
link_directories(src/main/jniLibs/${ANDROID_ABI})
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17")
|
||||
|
||||
add_library(polyvox_filament_android SHARED
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/PolyvoxFilamentApi.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/PolyvoxFilamentFFIApi.cpp"
|
||||
add_library(flutter_filament_android SHARED
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FlutterFilamentApi.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FlutterFilamentFFIApi.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/src/main/cpp/FilamentAndroid.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/AssetManager.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FilamentViewer.cpp"
|
||||
@@ -24,7 +24,7 @@ add_library(FILAMENT_SHADERS SHARED
|
||||
)
|
||||
|
||||
target_link_libraries(
|
||||
polyvox_filament_android
|
||||
flutter_filament_android
|
||||
FILAMENT_SHADERS
|
||||
-landroid
|
||||
-llog
|
||||
|
||||
@@ -1 +1 @@
|
||||
rootProject.name = 'polyvox_filament'
|
||||
rootProject.name = 'flutter_filament'
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
extern "C" {
|
||||
|
||||
#include "PolyvoxFilamentFFIApi.h"
|
||||
#include "FlutterFilamentFFIApi.h"
|
||||
|
||||
void* get_native_window_from_surface(
|
||||
jobject surface,
|
||||
|
||||
@@ -26,21 +26,21 @@ import io.flutter.view.TextureRegistry.SurfaceTextureEntry
|
||||
import java.io.File
|
||||
import java.util.*
|
||||
|
||||
class LoadFilamentResourceFromOwnerImpl(plugin:PolyvoxFilamentPlugin) : LoadFilamentResourceFromOwner {
|
||||
class LoadFilamentResourceFromOwnerImpl(plugin:FlutterFilamentPlugin) : LoadFilamentResourceFromOwner {
|
||||
var plugin = plugin
|
||||
override fun loadResourceFromOwner(path: String?, owner: Pointer?): ResourceBuffer {
|
||||
return plugin.loadResourceFromOwner(path, owner)
|
||||
}
|
||||
}
|
||||
|
||||
class FreeFilamentResourceFromOwnerImpl(plugin:PolyvoxFilamentPlugin) : FreeFilamentResourceFromOwner {
|
||||
class FreeFilamentResourceFromOwnerImpl(plugin:FlutterFilamentPlugin) : FreeFilamentResourceFromOwner {
|
||||
var plugin = plugin
|
||||
override fun freeResourceFromOwner(rb: ResourceBuffer, owner: Pointer?) {
|
||||
plugin.freeResourceFromOwner(rb, owner)
|
||||
}
|
||||
}
|
||||
|
||||
class RenderCallbackImpl(plugin:PolyvoxFilamentPlugin) : RenderCallback {
|
||||
class RenderCallbackImpl(plugin:FlutterFilamentPlugin) : RenderCallback {
|
||||
var plugin = plugin
|
||||
override fun renderCallback(owner:Pointer?) {
|
||||
plugin.renderCallback();
|
||||
@@ -51,8 +51,8 @@ class RenderCallbackImpl(plugin:PolyvoxFilamentPlugin) : RenderCallback {
|
||||
}
|
||||
}
|
||||
|
||||
/** PolyvoxFilamentPlugin */
|
||||
class PolyvoxFilamentPlugin: FlutterPlugin, MethodCallHandler, ActivityAware, LoadFilamentResourceFromOwner, FreeFilamentResourceFromOwner {
|
||||
/** FlutterFilamentPlugin */
|
||||
class FlutterFilamentPlugin: FlutterPlugin, MethodCallHandler, ActivityAware, LoadFilamentResourceFromOwner, FreeFilamentResourceFromOwner {
|
||||
|
||||
companion object {
|
||||
const val CHANNEL_NAME = "app.polyvox.filament/event"
|
||||
@@ -80,7 +80,7 @@ class PolyvoxFilamentPlugin: FlutterPlugin, MethodCallHandler, ActivityAware, Lo
|
||||
this.flutterPluginBinding = flutterPluginBinding
|
||||
channel = MethodChannel(flutterPluginBinding.binaryMessenger, CHANNEL_NAME)
|
||||
channel.setMethodCallHandler(this)
|
||||
_lib = Native.loadLibrary("polyvox_filament_android", FilamentInterop::class.java, Collections.singletonMap(Library.OPTION_ALLOW_OBJECTS, true))
|
||||
_lib = Native.loadLibrary("flutter_filament_android", FilamentInterop::class.java, Collections.singletonMap(Library.OPTION_ALLOW_OBJECTS, true))
|
||||
}
|
||||
|
||||
override fun onAttachedToActivity(binding: ActivityPluginBinding) {
|
||||
@@ -93,7 +93,7 @@ class PolyvoxFilamentPlugin: FlutterPlugin, MethodCallHandler, ActivityAware, Lo
|
||||
var _lastId = 1
|
||||
|
||||
override fun loadResourceFromOwner(path: String?, owner: Pointer?): ResourceBuffer {
|
||||
Log.i("polyvox_filament", "Loading resource from path $path")
|
||||
Log.i("flutter_filament", "Loading resource from path $path")
|
||||
var data:ByteArray? = null
|
||||
if(path!!.startsWith("file://")) {
|
||||
data = File(path!!.substring(6)).readBytes()
|
||||
@@ -108,14 +108,14 @@ class PolyvoxFilamentPlugin: FlutterPlugin, MethodCallHandler, ActivityAware, Lo
|
||||
if (hotReloadPath != null) {
|
||||
data = File(hotReloadPath).readBytes()
|
||||
} else {
|
||||
Log.i("polyvox_filament", "Loading resource from main asset bundle at ${assetPath}")
|
||||
Log.i("flutter_filament", "Loading resource from main asset bundle at ${assetPath}")
|
||||
|
||||
val assetManager: AssetManager = activity.assets
|
||||
try {
|
||||
data = assetManager.open(key).readBytes()
|
||||
Log.i("polyvox_filament", "Loaded ${data.size} bytes")
|
||||
Log.i("flutter_filament", "Loaded ${data.size} bytes")
|
||||
} catch (e:Exception) {
|
||||
Log.e("polyvox_filament", "Failed to open asset at ${assetPath}", null)
|
||||
Log.e("flutter_filament", "Failed to open asset at ${assetPath}", null)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -135,7 +135,7 @@ class PolyvoxFilamentPlugin: FlutterPlugin, MethodCallHandler, ActivityAware, Lo
|
||||
rb.data = Pointer(0)
|
||||
}
|
||||
} catch(e:Exception) {
|
||||
Log.e("polyvox_filament", "Error setting resource buffer : $e", null);
|
||||
Log.e("flutter_filament", "Error setting resource buffer : $e", null);
|
||||
}
|
||||
rb.write();
|
||||
return rb;
|
||||
@@ -153,7 +153,7 @@ class PolyvoxFilamentPlugin: FlutterPlugin, MethodCallHandler, ActivityAware, Lo
|
||||
|
||||
@RequiresApi(Build.VERSION_CODES.M)
|
||||
override fun onMethodCall(call: MethodCall, result: MethodChannel.Result) {
|
||||
Log.e("polyvox_filament", call.method, null)
|
||||
Log.e("flutter_filament", call.method, null)
|
||||
when (call.method) {
|
||||
"createTexture" -> {
|
||||
if(_surfaceTextureEntry != null) {
|
||||
@@ -167,7 +167,7 @@ class PolyvoxFilamentPlugin: FlutterPlugin, MethodCallHandler, ActivityAware, Lo
|
||||
result.error("DIMENSION_MISMATCH","Both dimensions must be greater than zero (you provided $width x $height)", null);
|
||||
return;
|
||||
}
|
||||
Log.i("polyvox_filament", "Creating Surface Texture of size ${width}x${height}");
|
||||
Log.i("flutter_filament", "Creating Surface Texture of size ${width}x${height}");
|
||||
|
||||
_surfaceTextureEntry = flutterPluginBinding.textureRegistry.createSurfaceTexture()
|
||||
_surfaceTexture = _surfaceTextureEntry!!.surfaceTexture();
|
||||
@@ -11,17 +11,17 @@ class HotReloadPathHelper {
|
||||
companion object {
|
||||
fun getAssetPath(path: String, packageName: String): String? {
|
||||
val packagePath = "/data/user/0/${packageName}/code_cache/"
|
||||
Log.v("polyvox_filament", "Looking for hot reloaded asset ${path} under package path ${packagePath}")
|
||||
Log.v("flutter_filament", "Looking for hot reloaded asset ${path} under package path ${packagePath}")
|
||||
val files = File(packagePath).walkBottomUp().filter {
|
||||
it.path.endsWith(path)
|
||||
}.sortedBy {
|
||||
it.lastModified()
|
||||
}.toList()
|
||||
if(files.size > 0) {
|
||||
Log.v("polyvox_filament", "Using hot reloaded asset at ${files.last().path}")
|
||||
Log.v("flutter_filament", "Using hot reloaded asset at ${files.last().path}")
|
||||
return files.last().path;
|
||||
}
|
||||
Log.v("polyvox_filament", "No hot reloaded asset found.")
|
||||
Log.v("flutter_filament", "No hot reloaded asset found.")
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# polyvox_filament_example
|
||||
# flutter_filament_example
|
||||
|
||||
Demonstrates how to use the polyvox_filament plugin.
|
||||
Demonstrates how to use the flutter_filament plugin.
|
||||
|
||||
## Linux
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ android {
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
applicationId "app.polyvox.filament_example"
|
||||
applicationId "app.polyvox.flutter_filament_example"
|
||||
minSdkVersion 22
|
||||
targetSdkVersion 31
|
||||
versionCode flutterVersionCode.toInteger()
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="app.polyvox.filament_example">
|
||||
package="app.polyvox.flutter_filament_example">
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
<application
|
||||
android:name="${applicationName}"
|
||||
android:label="polyvox_filament_example"
|
||||
android:label="flutter_filament_example"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:theme="@android:style/Theme.Translucent.NoTitleBar"
|
||||
>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package app.polyvox.filament_example
|
||||
package app.polyvox.flutter_filament_example
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
import io.flutter.embedding.android.TransparencyMode
|
||||
@@ -6,7 +6,7 @@ import 'package:flutter/gestures.dart';
|
||||
import 'package:flutter/widgets.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:integration_test/integration_test.dart';
|
||||
import 'package:polyvox_filament/widgets/filament_widget.dart';
|
||||
import 'package:flutter_filament/widgets/filament_widget.dart';
|
||||
import '../lib/main.dart' as app;
|
||||
|
||||
void main() {
|
||||
|
||||
@@ -5,14 +5,14 @@ PODS:
|
||||
- path_provider_foundation (0.0.1):
|
||||
- Flutter
|
||||
- FlutterMacOS
|
||||
- polyvox_filament (0.0.1):
|
||||
- flutter_filament (0.0.1):
|
||||
- Flutter
|
||||
|
||||
DEPENDENCIES:
|
||||
- Flutter (from `Flutter`)
|
||||
- integration_test (from `.symlinks/plugins/integration_test/ios`)
|
||||
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
|
||||
- polyvox_filament (from `.symlinks/plugins/polyvox_filament/ios`)
|
||||
- flutter_filament (from `.symlinks/plugins/flutter_filament/ios`)
|
||||
|
||||
EXTERNAL SOURCES:
|
||||
Flutter:
|
||||
@@ -21,14 +21,14 @@ EXTERNAL SOURCES:
|
||||
:path: ".symlinks/plugins/integration_test/ios"
|
||||
path_provider_foundation:
|
||||
:path: ".symlinks/plugins/path_provider_foundation/darwin"
|
||||
polyvox_filament:
|
||||
:path: ".symlinks/plugins/polyvox_filament/ios"
|
||||
flutter_filament:
|
||||
:path: ".symlinks/plugins/flutter_filament/ios"
|
||||
|
||||
SPEC CHECKSUMS:
|
||||
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
|
||||
integration_test: 13825b8a9334a850581300559b8839134b124670
|
||||
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
|
||||
polyvox_filament: 35fece7761e74c973afd80fe3aa0ca225eaace32
|
||||
flutter_filament: 35fece7761e74c973afd80fe3aa0ca225eaace32
|
||||
|
||||
PODFILE CHECKSUM: 7adbc9d59f05e1b01f554ea99b6c79e97f2214a2
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ import Flutter
|
||||
import UIKit
|
||||
import XCTest
|
||||
|
||||
@testable import polyvox_filament
|
||||
@testable import flutter_filament
|
||||
|
||||
// This demonstrates a simple unit test of the Swift portion of this plugin's implementation.
|
||||
//
|
||||
@@ -11,7 +11,7 @@ import XCTest
|
||||
class RunnerTests: XCTestCase {
|
||||
|
||||
func testGetPlatformVersion() {
|
||||
let plugin = PolyvoxFilamentPlugin()
|
||||
let plugin = FlutterFilamentPlugin()
|
||||
|
||||
let call = FlutterMethodCall(methodName: "getPlatformVersion", arguments: [])
|
||||
|
||||
|
||||
@@ -4,16 +4,16 @@ import 'dart:typed_data';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:permission_handler/permission_handler.dart';
|
||||
import 'package:polyvox_filament/animations/animation_data.dart';
|
||||
import 'package:flutter_filament/animations/animation_data.dart';
|
||||
|
||||
import 'package:polyvox_filament/filament_controller.dart';
|
||||
import 'package:flutter_filament/filament_controller.dart';
|
||||
|
||||
import 'package:polyvox_filament/filament_controller_ffi.dart';
|
||||
import 'package:polyvox_filament/animations/animation_builder.dart';
|
||||
import 'package:flutter_filament/filament_controller_ffi.dart';
|
||||
import 'package:flutter_filament/animations/animation_builder.dart';
|
||||
|
||||
import 'package:path_provider/path_provider.dart';
|
||||
import 'package:polyvox_filament/widgets/filament_gesture_detector.dart';
|
||||
import 'package:polyvox_filament/widgets/filament_widget.dart';
|
||||
import 'package:flutter_filament/widgets/filament_gesture_detector.dart';
|
||||
import 'package:flutter_filament/widgets/filament_widget.dart';
|
||||
|
||||
void main() async {
|
||||
runApp(const MyApp());
|
||||
|
||||
@@ -4,10 +4,10 @@ project(runner LANGUAGES CXX)
|
||||
|
||||
# The name of the executable created for the application. Change this to change
|
||||
# the on-disk name of your application.
|
||||
set(BINARY_NAME "polyvox_filament_example")
|
||||
set(BINARY_NAME "flutter_filament_example")
|
||||
# The unique GTK application identifier for this application. See:
|
||||
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
|
||||
set(APPLICATION_ID "app.polyvox.polyvox_filament")
|
||||
set(APPLICATION_ID "app.polyvox.flutter_filament")
|
||||
|
||||
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
|
||||
# versions of CMake.
|
||||
|
||||
@@ -6,10 +6,10 @@
|
||||
|
||||
#include "generated_plugin_registrant.h"
|
||||
|
||||
#include <polyvox_filament/polyvox_filament_plugin.h>
|
||||
#include <flutter_filament/flutter_filament_plugin.h>
|
||||
|
||||
void fl_register_plugins(FlPluginRegistry* registry) {
|
||||
g_autoptr(FlPluginRegistrar) polyvox_filament_registrar =
|
||||
fl_plugin_registry_get_registrar_for_plugin(registry, "PolyvoxFilamentPlugin");
|
||||
polyvox_filament_plugin_register_with_registrar(polyvox_filament_registrar);
|
||||
g_autoptr(FlPluginRegistrar) flutter_filament_registrar =
|
||||
fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterFilamentPlugin");
|
||||
flutter_filament_plugin_register_with_registrar(flutter_filament_registrar);
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
#
|
||||
|
||||
list(APPEND FLUTTER_PLUGIN_LIST
|
||||
polyvox_filament
|
||||
flutter_filament
|
||||
)
|
||||
|
||||
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
||||
|
||||
@@ -40,11 +40,11 @@ static void my_application_activate(GApplication* application) {
|
||||
if (use_header_bar) {
|
||||
GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
|
||||
gtk_widget_show(GTK_WIDGET(header_bar));
|
||||
gtk_header_bar_set_title(header_bar, "polyvox_filament_example");
|
||||
gtk_header_bar_set_title(header_bar, "flutter_filament_example");
|
||||
gtk_header_bar_set_show_close_button(header_bar, TRUE);
|
||||
gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
|
||||
} else {
|
||||
gtk_window_set_title(window, "polyvox_filament_example");
|
||||
gtk_window_set_title(window, "flutter_filament_example");
|
||||
}
|
||||
|
||||
gtk_window_set_default_size(window, 1280, 720);
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
import FlutterMacOS
|
||||
import Foundation
|
||||
|
||||
import flutter_filament
|
||||
import path_provider_foundation
|
||||
import polyvox_filament
|
||||
|
||||
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
||||
SwiftFlutterFilamentPlugin.register(with: registry.registrar(forPlugin: "SwiftFlutterFilamentPlugin"))
|
||||
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
|
||||
SwiftPolyvoxFilamentPlugin.register(with: registry.registrar(forPlugin: "SwiftPolyvoxFilamentPlugin"))
|
||||
}
|
||||
|
||||
@@ -3,26 +3,26 @@ PODS:
|
||||
- path_provider_foundation (0.0.1):
|
||||
- Flutter
|
||||
- FlutterMacOS
|
||||
- polyvox_filament (0.0.1):
|
||||
- flutter_filament (0.0.1):
|
||||
- FlutterMacOS
|
||||
|
||||
DEPENDENCIES:
|
||||
- FlutterMacOS (from `Flutter/ephemeral`)
|
||||
- path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`)
|
||||
- polyvox_filament (from `Flutter/ephemeral/.symlinks/plugins/polyvox_filament/macos`)
|
||||
- flutter_filament (from `Flutter/ephemeral/.symlinks/plugins/flutter_filament/macos`)
|
||||
|
||||
EXTERNAL SOURCES:
|
||||
FlutterMacOS:
|
||||
:path: Flutter/ephemeral
|
||||
path_provider_foundation:
|
||||
:path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin
|
||||
polyvox_filament:
|
||||
:path: Flutter/ephemeral/.symlinks/plugins/polyvox_filament/macos
|
||||
flutter_filament:
|
||||
:path: Flutter/ephemeral/.symlinks/plugins/flutter_filament/macos
|
||||
|
||||
SPEC CHECKSUMS:
|
||||
FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24
|
||||
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
|
||||
polyvox_filament: 410c2b06ba59f1182e2fa4338b583903631fb95f
|
||||
flutter_filament: 410c2b06ba59f1182e2fa4338b583903631fb95f
|
||||
|
||||
PODFILE CHECKSUM: 9cc8fc8fc62b1d9a89fd6f974ad4157b35254030
|
||||
|
||||
|
||||
@@ -107,6 +107,13 @@ packages:
|
||||
description: flutter
|
||||
source: sdk
|
||||
version: "0.0.0"
|
||||
flutter_filament:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
path: ".."
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.5.0"
|
||||
flutter_lints:
|
||||
dependency: "direct dev"
|
||||
description:
|
||||
@@ -319,13 +326,6 @@ packages:
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "3.7.3"
|
||||
polyvox_filament:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
path: ".."
|
||||
relative: true
|
||||
source: path
|
||||
version: "0.5.0"
|
||||
process:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
name: polyvox_filament_example
|
||||
description: Demonstrates how to use the polyvox_filament plugin.
|
||||
name: flutter_filament_example
|
||||
description: Demonstrates how to use the flutter_filament plugin.
|
||||
|
||||
# The following line prevents the package from being accidentally published to
|
||||
# pub.dev using `flutter pub publish`. This is preferred for private packages.
|
||||
@@ -18,7 +18,7 @@ dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
path_provider:
|
||||
polyvox_filament:
|
||||
flutter_filament:
|
||||
path: ../
|
||||
permission_handler:
|
||||
cupertino_icons: ^1.0.2
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
import 'package:polyvox_filament_example/main.dart';
|
||||
import 'package:flutter_filament_example/main.dart';
|
||||
|
||||
void main() {
|
||||
testWidgets('Verify Platform version', (WidgetTester tester) async {
|
||||
|
||||
@@ -18,18 +18,18 @@
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
|
||||
<meta name="description" content="Demonstrates how to use the polyvox_filament plugin.">
|
||||
<meta name="description" content="Demonstrates how to use the flutter_filament plugin.">
|
||||
|
||||
<!-- iOS meta tags & icons -->
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="apple-mobile-web-app-title" content="polyvox_filament_example">
|
||||
<meta name="apple-mobile-web-app-title" content="flutter_filament_example">
|
||||
<link rel="apple-touch-icon" href="icons/Icon-192.png">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" type="image/png" href="favicon.png"/>
|
||||
|
||||
<title>polyvox_filament_example</title>
|
||||
<title>flutter_filament_example</title>
|
||||
<link rel="manifest" href="manifest.json">
|
||||
|
||||
<script>
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "polyvox_filament_example",
|
||||
"short_name": "polyvox_filament_example",
|
||||
"name": "flutter_filament_example",
|
||||
"short_name": "flutter_filament_example",
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"background_color": "#0175C2",
|
||||
"theme_color": "#0175C2",
|
||||
"description": "Demonstrates how to use the polyvox_filament plugin.",
|
||||
"description": "Demonstrates how to use the flutter_filament plugin.",
|
||||
"orientation": "portrait-primary",
|
||||
"prefer_related_applications": false,
|
||||
"icons": [
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
cmake_minimum_required(VERSION 3.14)
|
||||
project(polyvox_filament_example LANGUAGES CXX)
|
||||
project(flutter_filament_example LANGUAGES CXX)
|
||||
|
||||
set(BINARY_NAME "polyvox_filament_example")
|
||||
set(BINARY_NAME "flutter_filament_example")
|
||||
|
||||
cmake_policy(SET CMP0063 NEW)
|
||||
|
||||
|
||||
@@ -6,12 +6,12 @@
|
||||
|
||||
#include "generated_plugin_registrant.h"
|
||||
|
||||
#include <flutter_filament/flutter_filament_plugin_c_api.h>
|
||||
#include <permission_handler_windows/permission_handler_windows_plugin.h>
|
||||
#include <polyvox_filament/polyvox_filament_plugin_c_api.h>
|
||||
|
||||
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
||||
FlutterFilamentPluginCApiRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("FlutterFilamentPluginCApi"));
|
||||
PermissionHandlerWindowsPluginRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin"));
|
||||
PolyvoxFilamentPluginCApiRegisterWithRegistrar(
|
||||
registry->GetRegistrarForPlugin("PolyvoxFilamentPluginCApi"));
|
||||
}
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
#
|
||||
|
||||
list(APPEND FLUTTER_PLUGIN_LIST
|
||||
flutter_filament
|
||||
permission_handler_windows
|
||||
polyvox_filament
|
||||
)
|
||||
|
||||
list(APPEND FLUTTER_FFI_PLUGIN_LIST
|
||||
|
||||
@@ -90,12 +90,12 @@ BEGIN
|
||||
BLOCK "040904e4"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "app.polyvox" "\0"
|
||||
VALUE "FileDescription", "polyvox_filament_example" "\0"
|
||||
VALUE "FileDescription", "flutter_filament_example" "\0"
|
||||
VALUE "FileVersion", VERSION_AS_STRING "\0"
|
||||
VALUE "InternalName", "polyvox_filament_example" "\0"
|
||||
VALUE "InternalName", "flutter_filament_example" "\0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2022 app.polyvox. All rights reserved." "\0"
|
||||
VALUE "OriginalFilename", "polyvox_filament_example.exe" "\0"
|
||||
VALUE "ProductName", "polyvox_filament_example" "\0"
|
||||
VALUE "OriginalFilename", "flutter_filament_example.exe" "\0"
|
||||
VALUE "ProductName", "flutter_filament_example" "\0"
|
||||
VALUE "ProductVersion", VERSION_AS_STRING "\0"
|
||||
END
|
||||
END
|
||||
|
||||
@@ -27,7 +27,7 @@ int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
|
||||
FlutterWindow window(project);
|
||||
Win32Window::Point origin(10, 10);
|
||||
Win32Window::Size size(1280, 720);
|
||||
if (!window.CreateAndShow(L"polyvox_filament_example", origin, size)) {
|
||||
if (!window.CreateAndShow(L"flutter_filament_example", origin, size)) {
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
window.SetQuitOnClose(true);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#import <Flutter/Flutter.h>
|
||||
|
||||
@interface PolyvoxFilamentPlugin : NSObject<FlutterPlugin>
|
||||
@interface FlutterFilamentPlugin : NSObject<FlutterPlugin>
|
||||
@end
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
#import "PolyvoxFilamentPlugin.h"
|
||||
#if __has_include(<polyvox_filament/polyvox_filament-Swift.h>)
|
||||
#import <polyvox_filament/polyvox_filament-Swift.h>
|
||||
#import "FlutterFilamentPlugin.h"
|
||||
#if __has_include(<flutter_filament/flutter_filament-Swift.h>)
|
||||
#import <flutter_filament/flutter_filament-Swift.h>
|
||||
#else
|
||||
// Support project import fallback if the generated compatibility header
|
||||
// is not copied when this plugin is created as a library.
|
||||
// https://forums.swift.org/t/swift-static-libraries-dont-copy-generated-objective-c-header/19816
|
||||
#import "polyvox_filament-Swift.h"
|
||||
#import "flutter_filament-Swift.h"
|
||||
#endif
|
||||
|
||||
#include "PolyvoxFilamentApi.h"
|
||||
#include "FlutterFilamentApi.h"
|
||||
|
||||
@implementation PolyvoxFilamentPlugin
|
||||
@implementation FlutterFilamentPlugin
|
||||
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
|
||||
[SwiftPolyvoxFilamentPlugin registerWithRegistrar:registrar];
|
||||
[SwiftFlutterFilamentPlugin registerWithRegistrar:registrar];
|
||||
ios_dummy();
|
||||
}
|
||||
@end
|
||||
|
||||
@@ -2,7 +2,7 @@ import Flutter
|
||||
import UIKit
|
||||
import GLKit
|
||||
|
||||
public class SwiftPolyvoxFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture {
|
||||
public class SwiftFlutterFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture {
|
||||
|
||||
var registrar : FlutterPluginRegistrar
|
||||
var flutterTextureId: Int64?
|
||||
@@ -25,7 +25,7 @@ public class SwiftPolyvoxFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture
|
||||
|
||||
var loadResource : @convention(c) (UnsafePointer<Int8>?, UnsafeMutableRawPointer?) -> ResourceBuffer = { uri, resourcesPtr in
|
||||
|
||||
let instance:SwiftPolyvoxFilamentPlugin = Unmanaged<SwiftPolyvoxFilamentPlugin>.fromOpaque(resourcesPtr!).takeUnretainedValue()
|
||||
let instance:SwiftFlutterFilamentPlugin = Unmanaged<SwiftFlutterFilamentPlugin>.fromOpaque(resourcesPtr!).takeUnretainedValue()
|
||||
|
||||
let uriString = String(cString:uri!)
|
||||
|
||||
@@ -121,12 +121,12 @@ public class SwiftPolyvoxFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture
|
||||
}
|
||||
|
||||
var freeResource : @convention(c) (ResourceBuffer,UnsafeMutableRawPointer?) -> () = { rbuf, resourcesPtr in
|
||||
let instance:SwiftPolyvoxFilamentPlugin = Unmanaged<SwiftPolyvoxFilamentPlugin>.fromOpaque(resourcesPtr!).takeUnretainedValue()
|
||||
let instance:SwiftFlutterFilamentPlugin = Unmanaged<SwiftFlutterFilamentPlugin>.fromOpaque(resourcesPtr!).takeUnretainedValue()
|
||||
instance.resources.removeObject(forKey:rbuf.id)
|
||||
}
|
||||
|
||||
var markTextureFrameAvailable : @convention(c) (UnsafeMutableRawPointer?) -> () = { instancePtr in
|
||||
let instance:SwiftPolyvoxFilamentPlugin = Unmanaged<SwiftPolyvoxFilamentPlugin>.fromOpaque(instancePtr!).takeUnretainedValue()
|
||||
let instance:SwiftFlutterFilamentPlugin = Unmanaged<SwiftFlutterFilamentPlugin>.fromOpaque(instancePtr!).takeUnretainedValue()
|
||||
instance.registry.textureFrameAvailable(instance.flutterTextureId!)
|
||||
}
|
||||
|
||||
@@ -145,7 +145,7 @@ public class SwiftPolyvoxFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture
|
||||
let _messenger = registrar.messenger();
|
||||
messenger = _messenger;
|
||||
let channel = FlutterMethodChannel(name: "app.polyvox.filament/event", binaryMessenger: _messenger)
|
||||
let instance = SwiftPolyvoxFilamentPlugin(textureRegistry: registrar.textures(), registrar:registrar)
|
||||
let instance = SwiftFlutterFilamentPlugin(textureRegistry: registrar.textures(), registrar:registrar)
|
||||
registrar.addMethodCallDelegate(instance, channel: channel)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#
|
||||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
|
||||
# Run `pod lib lint polyvox_filament.podspec` to validate before publishing.
|
||||
# Run `pod lib lint flutter_filament.podspec` to validate before publishing.
|
||||
#
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'polyvox_filament'
|
||||
s.name = 'flutter_filament'
|
||||
s.version = '0.0.1'
|
||||
s.summary = 'A new flutter plugin project.'
|
||||
s.description = <<-DESC
|
||||
@@ -14,7 +14,7 @@ A new flutter plugin project.
|
||||
s.author = { 'Your Company' => 'email@example.com' }
|
||||
s.source = { :path => '.' }
|
||||
s.source_files = 'Classes/*', 'src/*', "src/camutils/*", 'src/ios/*', 'include/filament/*', 'include/*', 'include/material/*.c'
|
||||
s.public_header_files = 'include/SwiftPolyvoxFilamentPlugin-Bridging-Header.h', 'include/PolyvoxFilamentApi.h', 'include/PolyvoxFilamentFFIApi.h', 'include/ResourceBuffer.hpp', 'include/Log.hpp'
|
||||
s.public_header_files = 'include/SwiftFlutterFilamentPlugin-Bridging-Header.h', 'include/FlutterFilamentApi.h', 'include/FlutterFilamentFFIApi.h', 'include/ResourceBuffer.hpp', 'include/Log.hpp'
|
||||
s.dependency 'Flutter'
|
||||
s.platform = :ios, '12.1'
|
||||
s.static_framework = true
|
||||
@@ -24,10 +24,10 @@ A new flutter plugin project.
|
||||
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386',
|
||||
"CLANG_CXX_LANGUAGE_STANDARD" => "c++17",
|
||||
'OTHER_CFLAGS' => '"-fvisibility=default" "$(inherited)"',
|
||||
'USER_HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/include" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/include/filament" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/src" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/src/image" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/src/shaders" "$(inherited)"',
|
||||
'USER_HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/include" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/include/filament" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/src" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/src/image" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/src/shaders" "$(inherited)"',
|
||||
'ALWAYS_SEARCH_USER_PATHS' => 'YES',
|
||||
"OTHER_LDFLAGS" => '-lfilament -lbackend -lfilameshio -lviewer -lfilamat -lgeometry -lutils -lfilabridge -lgltfio_core -lfilament-iblprefilter -limage -limageio -ltinyexr -lgltfio_core -lfilaflat -ldracodec -libl -lktxreader -lpng -lpng16 -lz -lstb -luberzlib -lsmol-v -luberarchive -lzstd -lstdc++',
|
||||
'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/lib" "$(inherited)"',
|
||||
'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/lib" "$(inherited)"',
|
||||
}
|
||||
|
||||
s.pod_target_xcconfig = {
|
||||
@@ -36,10 +36,10 @@ A new flutter plugin project.
|
||||
"CLANG_CXX_LANGUAGE_STANDARD" => "c++17",
|
||||
'OTHER_CXXFLAGS' => '"--std=c++17" "-fmodules" "-fcxx-modules" "-fvisibility=default" "$(inherited)"',
|
||||
'OTHER_CFLAGS' => '"-fvisibility=default" "$(inherited)"',
|
||||
'USER_HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/include" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/include/filament" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/src" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/src/image" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/src/shaders" "$(inherited)"',
|
||||
'USER_HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/include" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/include/filament" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/src" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/src/image" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/src/shaders" "$(inherited)"',
|
||||
'ALWAYS_SEARCH_USER_PATHS' => 'YES',
|
||||
"OTHER_LDFLAGS" => '-lfilament -lbackend -lfilameshio -lviewer -lfilamat -lgeometry -lutils -lfilabridge -lgltfio_core -lfilament-iblprefilter -limage -limageio -ltinyexr -lgltfio_core -lfilaflat -ldracodec -libl -lktxreader -lpng -lpng16 -lz -lstb -luberzlib -lsmol-v -luberarchive -lzstd -lstdc++',
|
||||
'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/ios/lib" "$(inherited)"',
|
||||
'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/flutter_filament/ios/lib" "$(inherited)"',
|
||||
}
|
||||
|
||||
s.swift_version = '5.0'
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef _POLYVOX_FILAMENT_API_H
|
||||
#define _POLYVOX_FILAMENT_API_H
|
||||
#ifndef _FLUTTER_FILAMENT_API_H
|
||||
#define _FLUTTER_FILAMENT_API_H
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifdef IS_DLL
|
||||
@@ -1,15 +1,15 @@
|
||||
#ifndef _POLYVOX_FILAMENT_FFI_API_H
|
||||
#define _POLYVOX_FILAMENT_FFI_API_H
|
||||
#ifndef _FLUTTER_FILAMENT_FFI_API_H
|
||||
#define _FLUTTER_FILAMENT_FFI_API_H
|
||||
|
||||
#include "PolyvoxFilamentApi.h"
|
||||
#include "FlutterFilamentApi.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
///
|
||||
/// This header replicates most of the methods in PolyvoxFilamentApi.h, and is only intended to be used to generate client FFI bindings.
|
||||
/// The intention is that calling one of these methods will call its respective method in PolyvoxFilamentApi.h, but wrapped in some kind of thread runner to ensure thread safety.
|
||||
/// This header replicates most of the methods in FlutterFilamentApi.h, and is only intended to be used to generate client FFI bindings.
|
||||
/// The intention is that calling one of these methods will call its respective method in FlutterFilamentApi.h, but wrapped in some kind of thread runner to ensure thread safety.
|
||||
///
|
||||
|
||||
typedef int32_t EntityId;
|
||||
@@ -92,4 +92,4 @@ FLUTTER_PLUGIN_EXPORT void ios_dummy_ffi();
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // _POLYVOX_FILAMENT_FFI_API_H
|
||||
#endif // _FLUTTER_FILAMENT_FFI_API_H
|
||||
4
ios/include/FlutterFilamentPlugin.h
Normal file
4
ios/include/FlutterFilamentPlugin.h
Normal file
@@ -0,0 +1,4 @@
|
||||
#import <Flutter/Flutter.h>
|
||||
|
||||
@interface FlutterFilamentPlugin : NSObject<FlutterPlugin>
|
||||
@end
|
||||
@@ -1,13 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef POLYVOX_FILAMENT_LOG_H
|
||||
#define POLYVOX_FILAMENT_LOG_H
|
||||
#ifndef FLUTTER_FILAMENT_LOG_H
|
||||
#define FLUTTER_FILAMENT_LOG_H
|
||||
|
||||
#ifdef __OBJC__
|
||||
#import <Foundation/Foundation.h>
|
||||
#elif defined __ANDROID__
|
||||
#include <android/log.h>
|
||||
#define LOGTAG "PolyvoxFilament"
|
||||
#define LOGTAG "FlutterFilament"
|
||||
#else
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
#import <Flutter/Flutter.h>
|
||||
|
||||
@interface PolyvoxFilamentPlugin : NSObject<FlutterPlugin>
|
||||
@end
|
||||
@@ -20,7 +20,7 @@
|
||||
#include <utils/NameComponentManager.h>
|
||||
|
||||
extern "C" {
|
||||
#include "PolyvoxFilamentApi.h"
|
||||
#include "FlutterFilamentApi.h"
|
||||
}
|
||||
template class std::vector<float>;
|
||||
namespace polyvox {
|
||||
|
||||
8
ios/include/SwiftFlutterFilamentPlugin-Bridging-Header.h
Normal file
8
ios/include/SwiftFlutterFilamentPlugin-Bridging-Header.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef SwiftFlutterFilamentPlugin_Bridging_Header_h
|
||||
#define SwiftFlutterFilamentPlugin_Bridging_Header_h
|
||||
|
||||
#import "FlutterFilamentApi.h"
|
||||
#import "FlutterFilamentFFIApi.h"
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
#ifndef SwiftPolyvoxFilamentPlugin_Bridging_Header_h
|
||||
#define SwiftPolyvoxFilamentPlugin_Bridging_Header_h
|
||||
|
||||
#import "PolyvoxFilamentApi.h"
|
||||
#import "PolyvoxFilamentFFIApi.h"
|
||||
|
||||
#endif
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#ifndef _THREADPOOL_HPP
|
||||
#define _THREADPOOL_HPP
|
||||
|
||||
namespace polyvox_filament {
|
||||
namespace flutter_filament {
|
||||
|
||||
class ThreadPool {
|
||||
std::vector<std::thread> pool;
|
||||
|
||||
@@ -13,7 +13,7 @@ using namespace polyvox;
|
||||
|
||||
extern "C" {
|
||||
|
||||
#include "PolyvoxFilamentApi.h"
|
||||
#include "FlutterFilamentApi.h"
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT const void* create_filament_viewer(const void* context, const ResourceLoaderWrapper* const loader, void* const platform, const char* uberArchivePath) {
|
||||
return (const void*) new FilamentViewer(context, loader, platform, uberArchivePath);
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
#include "PolyvoxFilamentFFIApi.h"
|
||||
#include "FlutterFilamentFFIApi.h"
|
||||
|
||||
#include "FilamentViewer.hpp"
|
||||
#include "Log.hpp"
|
||||
@@ -11,15 +11,15 @@ import 'generated_bindings_web.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:flutter_web_plugins/flutter_web_plugins.dart';
|
||||
|
||||
/// A web implementation of the PolyvoxFilamentPlatform of the PolyvoxFilament plugin.
|
||||
class PolyvoxFilamentPluginWeb {
|
||||
/// A web implementation of the FlutterFilamentPlatform of the FlutterFilament plugin.
|
||||
class FlutterFilamentPluginWeb {
|
||||
// late html.CanvasElement _canvas;
|
||||
late RenderingContext _gl;
|
||||
DynamicLibrary _nativeLib;
|
||||
dynamic _texture;
|
||||
|
||||
|
||||
PolyvoxFilamentPluginWeb() {
|
||||
FlutterFilamentPluginWeb() {
|
||||
var canvas = document.querySelector('#drawHere') as CanvasElement;
|
||||
|
||||
_gl = canvas.getContext("webgl") as RenderingContext;
|
||||
@@ -50,7 +50,7 @@ class PolyvoxFilamentPluginWeb {
|
||||
static void registerWith(Registrar registrar) {
|
||||
final MethodChannel channel = MethodChannel("app.polyvox.filament/event",
|
||||
const StandardMethodCodec(), registrar.messenger);
|
||||
final PolyvoxFilamentPluginWeb instance = PolyvoxFilamentPluginWeb();
|
||||
final FlutterFilamentPluginWeb instance = FlutterFilamentPluginWeb();
|
||||
channel.setMethodCallHandler(instance.handleMethodCall);
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import 'package:polyvox_filament/animations/animation_data.dart';
|
||||
import 'package:flutter_filament/animations/animation_data.dart';
|
||||
import 'package:vector_math/vector_math.dart';
|
||||
|
||||
class AnimationBuilder {
|
||||
|
||||
@@ -3,7 +3,7 @@ import 'dart:ui' as ui;
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
import 'package:polyvox_filament/animations/animation_data.dart';
|
||||
import 'package:flutter_filament/animations/animation_data.dart';
|
||||
|
||||
typedef FilamentEntity = int;
|
||||
|
||||
|
||||
@@ -5,11 +5,11 @@ import 'dart:ui' as ui;
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:ffi/ffi.dart';
|
||||
|
||||
import 'package:polyvox_filament/filament_controller.dart';
|
||||
import 'package:flutter_filament/filament_controller.dart';
|
||||
|
||||
import 'package:polyvox_filament/animations/animation_data.dart';
|
||||
import 'package:polyvox_filament/generated_bindings.dart';
|
||||
import 'package:polyvox_filament/rendering_surface.dart';
|
||||
import 'package:flutter_filament/animations/animation_data.dart';
|
||||
import 'package:flutter_filament/generated_bindings.dart';
|
||||
import 'package:flutter_filament/rendering_surface.dart';
|
||||
|
||||
// ignore: constant_identifier_names
|
||||
const FilamentEntity _FILAMENT_ASSET_ERROR = 0;
|
||||
@@ -46,7 +46,7 @@ class FilamentControllerFFI extends FilamentController {
|
||||
|
||||
///
|
||||
/// This controller uses platform channels to bridge Dart with the C/C++ code for the Filament API.
|
||||
/// Setting up the context/texture (since this is platform-specific) and the render ticker are platform-specific; all other methods are passed through by the platform channel to the methods specified in PolyvoxFilamentApi.h.
|
||||
/// Setting up the context/texture (since this is platform-specific) and the render ticker are platform-specific; all other methods are passed through by the platform channel to the methods specified in FlutterFilamentApi.h.
|
||||
///
|
||||
FilamentControllerFFI({this.uberArchivePath}) {
|
||||
// on some platforms, we ignore the resize event raised by the Flutter RenderObserver
|
||||
@@ -70,7 +70,7 @@ class FilamentControllerFFI extends FilamentController {
|
||||
if (Platform.isIOS || Platform.isMacOS || Platform.isWindows) {
|
||||
dl = DynamicLibrary.process();
|
||||
} else {
|
||||
dl = DynamicLibrary.open("libpolyvox_filament_android.so");
|
||||
dl = DynamicLibrary.open("libflutter_filament_android.so");
|
||||
}
|
||||
_lib = NativeLibrary(dl);
|
||||
if(Platform.isWindows) {
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import 'dart:async';
|
||||
import 'dart:ui' as ui;
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:polyvox_filament/filament_controller.dart';
|
||||
import 'package:flutter_filament/filament_controller.dart';
|
||||
|
||||
import 'package:polyvox_filament/animations/animation_data.dart';
|
||||
import 'package:polyvox_filament/generated_bindings_web.dart';
|
||||
import 'package:flutter_filament/animations/animation_data.dart';
|
||||
import 'package:flutter_filament/generated_bindings_web.dart';
|
||||
import 'filament_controller.dart';
|
||||
|
||||
typedef AssetManager = int;
|
||||
@@ -34,7 +34,7 @@ class FilamentControllerMethodChannel extends FilamentController {
|
||||
|
||||
///
|
||||
/// This controller uses platform channels to bridge Dart with the C/C++ code for the Filament API.
|
||||
/// Setting up the context/texture (since this is platform-specific) and the render ticker are platform-specific; all other methods are passed through by the platform channel to the methods specified in PolyvoxFilamentApi.h.
|
||||
/// Setting up the context/texture (since this is platform-specific) and the render ticker are platform-specific; all other methods are passed through by the platform channel to the methods specified in FlutterFilamentApi.h.
|
||||
///
|
||||
FilamentController() {
|
||||
_channel.setMethodCallHandler((call) async {
|
||||
|
||||
@@ -2380,8 +2380,8 @@ typedef FreeFilamentResourceFromOwner = ffi.Pointer<
|
||||
ffi
|
||||
.NativeFunction<ffi.Void Function(ResourceBuffer, ffi.Pointer<ffi.Void>)>>;
|
||||
|
||||
/// This header replicates most of the methods in PolyvoxFilamentApi.h, and is only intended to be used to generate client FFI bindings.
|
||||
/// The intention is that calling one of these methods will call its respective method in PolyvoxFilamentApi.h, but wrapped in some kind of thread runner to ensure thread safety.
|
||||
/// This header replicates most of the methods in FlutterFilamentApi.h, and is only intended to be used to generate client FFI bindings.
|
||||
/// The intention is that calling one of these methods will call its respective method in FlutterFilamentApi.h, but wrapped in some kind of thread runner to ensure thread safety.
|
||||
typedef EntityId = ffi.Int32;
|
||||
typedef FilamentRenderCallback = ffi.Pointer<
|
||||
ffi.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.Void> owner)>>;
|
||||
|
||||
@@ -4,8 +4,8 @@ import 'dart:io';
|
||||
import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/gestures.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:polyvox_filament/widgets/filament_gesture_detector_desktop.dart';
|
||||
import 'package:polyvox_filament/widgets/filament_gesture_detector_mobile.dart';
|
||||
import 'package:flutter_filament/widgets/filament_gesture_detector_desktop.dart';
|
||||
import 'package:flutter_filament/widgets/filament_gesture_detector_mobile.dart';
|
||||
import '../filament_controller.dart';
|
||||
|
||||
enum GestureType { RotateCamera, PanCamera, PanBackground }
|
||||
|
||||
@@ -5,7 +5,7 @@ import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/rendering.dart';
|
||||
|
||||
import 'package:polyvox_filament/filament_controller.dart';
|
||||
import 'package:flutter_filament/filament_controller.dart';
|
||||
|
||||
import 'dart:async';
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
# Project-level configuration.
|
||||
set(PROJECT_NAME "polyvox_filament")
|
||||
set(PROJECT_NAME "flutter_filament")
|
||||
project(${PROJECT_NAME})
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++ -fPIC -Wno-unused-variable -Wno-unused-function")
|
||||
@@ -12,7 +12,7 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -Wno-unused-variable -Wno-unused-funct
|
||||
|
||||
# This value is used when generating builds using this plugin, so it must
|
||||
# not be changed.
|
||||
set(PLUGIN_NAME "polyvox_filament_plugin")
|
||||
set(PLUGIN_NAME "flutter_filament_plugin")
|
||||
|
||||
link_directories("${CMAKE_CURRENT_SOURCE_DIR}/lib")
|
||||
|
||||
@@ -26,12 +26,12 @@ add_library(FILAMENT_SHADERS SHARED
|
||||
#
|
||||
# Any new source files that you add to the plugin should be added here.
|
||||
add_library(${PLUGIN_NAME} SHARED
|
||||
"polyvox_filament_plugin.cc"
|
||||
"flutter_filament_plugin.cc"
|
||||
"filament_texture.cc"
|
||||
"filament_pb_texture.cc"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/AssetManager.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FilamentViewer.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/PolyvoxFilamentApi.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FlutterFilamentApi.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/StreamBufferAdapter.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/TimeIt.cpp"
|
||||
)
|
||||
@@ -161,7 +161,7 @@ target_link_libraries(${PLUGIN_NAME} PRIVATE
|
||||
# List of absolute paths to libraries that should be bundled with the plugin.
|
||||
# This list could contain prebuilt libraries, or libraries created by an
|
||||
# external build triggered from this build file.
|
||||
set(polyvox_filament_bundled_libraries
|
||||
set(flutter_filament_bundled_libraries
|
||||
""
|
||||
PARENT_SCOPE
|
||||
lib/libgeometry.a
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
#include <sys/utsname.h>
|
||||
|
||||
#include <epoxy/gl.h>
|
||||
#include "include/polyvox_filament/filament_pb_texture.h"
|
||||
#include "include/flutter_filament/filament_pb_texture.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
#include <sys/utsname.h>
|
||||
|
||||
#include <epoxy/gl.h>
|
||||
#include "include/polyvox_filament/filament_texture.h"
|
||||
#include "include/flutter_filament/filament_texture.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "include/polyvox_filament/polyvox_filament_plugin.h"
|
||||
#include "include/flutter_filament/flutter_filament_plugin.h"
|
||||
|
||||
#include <flutter_linux/flutter_linux.h>
|
||||
#include <flutter_linux/fl_texture_registrar.h>
|
||||
@@ -16,26 +16,26 @@
|
||||
#include <map>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "include/polyvox_filament/filament_texture.h"
|
||||
#include "include/polyvox_filament/filament_pb_texture.h"
|
||||
#include "include/polyvox_filament/resource_loader.hpp"
|
||||
#include "include/flutter_filament/filament_texture.h"
|
||||
#include "include/flutter_filament/filament_pb_texture.h"
|
||||
#include "include/flutter_filament/resource_loader.hpp"
|
||||
|
||||
#include "FilamentViewer.hpp"
|
||||
#include "Log.hpp"
|
||||
|
||||
extern "C" {
|
||||
#include "PolyvoxFilamentApi.h"
|
||||
#include "FlutterFilamentApi.h"
|
||||
}
|
||||
|
||||
#include <epoxy/gl.h>
|
||||
#include <epoxy/glx.h>
|
||||
|
||||
#define POLYVOX_FILAMENT_PLUGIN(obj) \
|
||||
(G_TYPE_CHECK_INSTANCE_CAST((obj), polyvox_filament_plugin_get_type(), \
|
||||
PolyvoxFilamentPlugin))
|
||||
#define FLUTTER_FILAMENT_PLUGIN(obj) \
|
||||
(G_TYPE_CHECK_INSTANCE_CAST((obj), flutter_filament_plugin_get_type(), \
|
||||
FlutterFilamentPlugin))
|
||||
|
||||
|
||||
struct _PolyvoxFilamentPlugin {
|
||||
struct _FlutterFilamentPlugin {
|
||||
GObject parent_instance;
|
||||
FlTextureRegistrar* texture_registrar;
|
||||
FlView* fl_view;
|
||||
@@ -46,10 +46,10 @@ struct _PolyvoxFilamentPlugin {
|
||||
polyvox::FilamentViewer* viewer;
|
||||
};
|
||||
|
||||
G_DEFINE_TYPE(PolyvoxFilamentPlugin, polyvox_filament_plugin, g_object_get_type())
|
||||
G_DEFINE_TYPE(FlutterFilamentPlugin, flutter_filament_plugin, g_object_get_type())
|
||||
|
||||
static gboolean on_frame_tick(GtkWidget* widget, GdkFrameClock* frame_clock, gpointer self) {
|
||||
PolyvoxFilamentPlugin* plugin = (PolyvoxFilamentPlugin*)self;
|
||||
FlutterFilamentPlugin* plugin = (FlutterFilamentPlugin*)self;
|
||||
|
||||
if(plugin->rendering) {
|
||||
render(plugin->viewer, 0);
|
||||
@@ -59,7 +59,7 @@ static gboolean on_frame_tick(GtkWidget* widget, GdkFrameClock* frame_clock, gpo
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static FlMethodResponse* _create_filament_viewer(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _create_filament_viewer(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
auto callback = new ResourceLoaderWrapper(loadResource, freeResource);
|
||||
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
@@ -89,7 +89,7 @@ static FlMethodResponse* _create_filament_viewer(PolyvoxFilamentPlugin* self, Fl
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _create_texture(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _create_texture(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
if(self->texture) {
|
||||
Log("Error - create_texture called when texture exists.");
|
||||
}
|
||||
@@ -115,7 +115,7 @@ static FlMethodResponse* _create_texture(PolyvoxFilamentPlugin* self, FlMethodCa
|
||||
}
|
||||
|
||||
|
||||
static FlMethodResponse* _update_viewport_and_camera_projection(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _update_viewport_and_camera_projection(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
|
||||
auto width = fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
@@ -128,12 +128,12 @@ static FlMethodResponse* _update_viewport_and_camera_projection(PolyvoxFilamentP
|
||||
}
|
||||
|
||||
|
||||
static FlMethodResponse* _get_asset_manager(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _get_asset_manager(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
auto assetManager = get_asset_manager(self->viewer);
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(fl_value_new_int(reinterpret_cast<int64_t>(assetManager))));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _resize(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _resize(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
|
||||
const double width = fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
@@ -154,7 +154,7 @@ static FlMethodResponse* _resize(PolyvoxFilamentPlugin* self, FlMethodCall* meth
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _loadSkybox(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _loadSkybox(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
|
||||
const gchar* path = fl_value_get_string(args);
|
||||
@@ -165,13 +165,13 @@ static FlMethodResponse* _loadSkybox(PolyvoxFilamentPlugin* self, FlMethodCall*
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _remove_ibl(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _remove_ibl(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
remove_ibl(self->viewer);
|
||||
g_autoptr(FlValue) result = fl_value_new_string("OK");
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _loadIbl(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _loadIbl(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
|
||||
auto path = fl_value_get_string(fl_value_get_list_value(args, 0));
|
||||
@@ -183,14 +183,14 @@ static FlMethodResponse* _loadIbl(PolyvoxFilamentPlugin* self, FlMethodCall* met
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _removeSkybox(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _removeSkybox(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
std::cout << "Removing skybox" << std::endl;
|
||||
remove_skybox(self->viewer);
|
||||
g_autoptr(FlValue) result = fl_value_new_string("OK");
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_background_image(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_background_image(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
|
||||
@@ -202,7 +202,7 @@ static FlMethodResponse* _set_background_image(PolyvoxFilamentPlugin* self, FlMe
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_background_color(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_background_color(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
const float r = fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
const float g = fl_value_get_float(fl_value_get_list_value(args, 1));
|
||||
@@ -214,7 +214,7 @@ static FlMethodResponse* _set_background_color(PolyvoxFilamentPlugin* self, FlMe
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _add_light(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _add_light(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
|
||||
@@ -235,7 +235,7 @@ static FlMethodResponse* _add_light(PolyvoxFilamentPlugin* self, FlMethodCall* m
|
||||
|
||||
}
|
||||
|
||||
static FlMethodResponse* _load_glb(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _load_glb(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
auto path = fl_value_get_string(fl_value_get_list_value(args, 1));
|
||||
@@ -245,7 +245,7 @@ static FlMethodResponse* _load_glb(PolyvoxFilamentPlugin* self, FlMethodCall* me
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _get_animation_names(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _get_animation_names(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
@@ -263,7 +263,7 @@ static FlMethodResponse* _get_animation_names(PolyvoxFilamentPlugin* self, FlMet
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _remove_asset(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _remove_asset(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto asset = (EntityId)fl_value_get_int(fl_value_get_list_value(args, 1));
|
||||
remove_asset(self->viewer, asset);
|
||||
@@ -271,7 +271,7 @@ static FlMethodResponse* _remove_asset(PolyvoxFilamentPlugin* self, FlMethodCall
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _transform_to_unit_cube(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _transform_to_unit_cube(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
auto asset = (EntityId)fl_value_get_int(fl_value_get_list_value(args, 1));
|
||||
@@ -280,7 +280,7 @@ static FlMethodResponse* _transform_to_unit_cube(PolyvoxFilamentPlugin* self, Fl
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _rotate_start(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _rotate_start(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
|
||||
auto x = (float)fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
@@ -292,13 +292,13 @@ static FlMethodResponse* _rotate_start(PolyvoxFilamentPlugin* self, FlMethodCall
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _rotate_end(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _rotate_end(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
grab_end(self->viewer);
|
||||
g_autoptr(FlValue) result = fl_value_new_string("OK");
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _rotate_update(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _rotate_update(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto x = (float)fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
auto y = (float)fl_value_get_float(fl_value_get_list_value(args, 1));
|
||||
@@ -309,7 +309,7 @@ static FlMethodResponse* _rotate_update(PolyvoxFilamentPlugin* self, FlMethodCal
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _pan_start(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _pan_start(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
|
||||
@@ -321,7 +321,7 @@ static FlMethodResponse* _pan_start(PolyvoxFilamentPlugin* self, FlMethodCall* m
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _pan_update(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _pan_update(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto x = (float)fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
auto y = (float)fl_value_get_float(fl_value_get_list_value(args, 1));
|
||||
@@ -331,13 +331,13 @@ static FlMethodResponse* _pan_update(PolyvoxFilamentPlugin* self, FlMethodCall*
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _pan_end(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _pan_end(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
grab_end(self->viewer);
|
||||
g_autoptr(FlValue) result = fl_value_new_string("OK");
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_position(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_position(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
auto asset = (EntityId)fl_value_get_int(fl_value_get_list_value(args, 1));
|
||||
@@ -353,7 +353,7 @@ static FlMethodResponse* _set_position(PolyvoxFilamentPlugin* self, FlMethodCall
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_rotation(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_rotation(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
|
||||
@@ -373,7 +373,7 @@ static FlMethodResponse* _set_rotation(PolyvoxFilamentPlugin* self, FlMethodCall
|
||||
|
||||
|
||||
|
||||
static FlMethodResponse* _set_bone_transform(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_bone_transform(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
throw std::invalid_argument( "received negative value" );
|
||||
// FlValue* args = fl_method_call_get_args(method_call);
|
||||
// auto assetPtr = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
@@ -396,7 +396,7 @@ static FlMethodResponse* _set_bone_transform(PolyvoxFilamentPlugin* self, FlMeth
|
||||
// return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_camera(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_camera(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto asset = (EntityId)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
auto cameraName = fl_value_get_string(fl_value_get_list_value(args, 1)) ;
|
||||
@@ -406,14 +406,14 @@ static FlMethodResponse* _set_camera(PolyvoxFilamentPlugin* self, FlMethodCall*
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_camera_model_matrix(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_camera_model_matrix(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
set_camera_model_matrix(self->viewer, fl_value_get_float32_list(args));
|
||||
g_autoptr(FlValue) result = fl_value_new_string("OK");
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_camera_exposure(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_camera_exposure(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto aperture = (float)fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
auto shutter_speed = (float)fl_value_get_float(fl_value_get_list_value(args, 1));
|
||||
@@ -423,7 +423,7 @@ static FlMethodResponse* _set_camera_exposure(PolyvoxFilamentPlugin* self, FlMet
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_camera_position(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_camera_position(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto x = (float)fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
auto y = (float)fl_value_get_float(fl_value_get_list_value(args, 1));
|
||||
@@ -433,7 +433,7 @@ static FlMethodResponse* _set_camera_position(PolyvoxFilamentPlugin* self, FlMet
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_camera_rotation(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_camera_rotation(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto rads = (float)fl_value_get_float(fl_value_get_list_value(args,0 ));
|
||||
auto x = (float)fl_value_get_float(fl_value_get_list_value(args, 1));
|
||||
@@ -445,14 +445,14 @@ static FlMethodResponse* _set_camera_rotation(PolyvoxFilamentPlugin* self, FlMet
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_rendering(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_rendering(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
self->rendering = (bool)fl_value_get_bool(args);
|
||||
g_autoptr(FlValue) result = fl_value_new_string("OK");
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_frame_interval(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_frame_interval(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto val = (float) fl_value_get_float(args);
|
||||
set_frame_interval(self->viewer, val);
|
||||
@@ -460,7 +460,7 @@ static FlMethodResponse* _set_frame_interval(PolyvoxFilamentPlugin* self, FlMeth
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _grab_begin(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _grab_begin(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto x = (float)fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
auto y = (float)fl_value_get_float(fl_value_get_list_value(args, 1));
|
||||
@@ -470,13 +470,13 @@ static FlMethodResponse* _grab_begin(PolyvoxFilamentPlugin* self, FlMethodCall*
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _grab_end(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _grab_end(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
grab_end(self->viewer);
|
||||
g_autoptr(FlValue) result = fl_value_new_string("OK");
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _grab_update(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _grab_update(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto x = (float)fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
auto y = (float)fl_value_get_float(fl_value_get_list_value(args, 1));
|
||||
@@ -486,19 +486,19 @@ static FlMethodResponse* _grab_update(PolyvoxFilamentPlugin* self, FlMethodCall*
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _scroll_begin(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _scroll_begin(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
scroll_begin(self->viewer);
|
||||
g_autoptr(FlValue) result = fl_value_new_string("OK");
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _scroll_end(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _scroll_end(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
scroll_end(self->viewer);
|
||||
g_autoptr(FlValue) result = fl_value_new_string("OK");
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _scroll_update(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _scroll_update(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto x = (float)fl_value_get_float(fl_value_get_list_value(args, 0));
|
||||
auto y = (float)fl_value_get_float(fl_value_get_list_value(args, 1));
|
||||
@@ -509,7 +509,7 @@ static FlMethodResponse* _scroll_update(PolyvoxFilamentPlugin* self, FlMethodCal
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _play_animation(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _play_animation(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
auto asset = (EntityId)fl_value_get_int(fl_value_get_list_value(args, 1));
|
||||
@@ -524,7 +524,7 @@ static FlMethodResponse* _play_animation(PolyvoxFilamentPlugin* self, FlMethodCa
|
||||
}
|
||||
|
||||
|
||||
static FlMethodResponse* _stop_animation(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _stop_animation(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
auto asset = (EntityId)fl_value_get_int(fl_value_get_list_value(args, 1));
|
||||
@@ -535,7 +535,7 @@ static FlMethodResponse* _stop_animation(PolyvoxFilamentPlugin* self, FlMethodCa
|
||||
}
|
||||
|
||||
|
||||
static FlMethodResponse* _set_morph_target_weights(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_morph_target_weights(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
auto asset = (EntityId)fl_value_get_int(fl_value_get_list_value(args, 1));
|
||||
@@ -557,7 +557,7 @@ static FlMethodResponse* _set_morph_target_weights(PolyvoxFilamentPlugin* self,
|
||||
|
||||
template class std::vector<int>;
|
||||
|
||||
static FlMethodResponse* _set_morph_animation(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_morph_animation(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
auto asset = (EntityId)fl_value_get_int(fl_value_get_list_value(args, 1));
|
||||
@@ -599,7 +599,7 @@ static FlMethodResponse* _set_morph_animation(PolyvoxFilamentPlugin* self, FlMet
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_animation(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_animation(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
throw std::invalid_argument( "received negative value" );
|
||||
// FlValue* args = fl_method_call_get_args(method_call);
|
||||
// auto assetPtr = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
@@ -677,7 +677,7 @@ static FlMethodResponse* _set_animation(PolyvoxFilamentPlugin* self, FlMethodCal
|
||||
// return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _get_morph_target_names(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _get_morph_target_names(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
auto assetManager = (void*)fl_value_get_int(fl_value_get_list_value(args, 0));
|
||||
auto asset = (EntityId)fl_value_get_int(fl_value_get_list_value(args, 1));
|
||||
@@ -696,22 +696,22 @@ static FlMethodResponse* _get_morph_target_names(PolyvoxFilamentPlugin* self, Fl
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(result));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_tone_mapping(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_tone_mapping(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
polyvox::ToneMapping toneMapping = static_cast<polyvox::ToneMapping>(fl_value_get_int(args));
|
||||
set_tone_mapping(self->viewer, toneMapping);
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(fl_value_new_bool(true)));
|
||||
}
|
||||
|
||||
static FlMethodResponse* _set_bloom(PolyvoxFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
static FlMethodResponse* _set_bloom(FlutterFilamentPlugin* self, FlMethodCall* method_call) {
|
||||
FlValue* args = fl_method_call_get_args(method_call);
|
||||
set_bloom(self->viewer, fl_value_get_float(args));
|
||||
return FL_METHOD_RESPONSE(fl_method_success_response_new(fl_value_new_bool(true)));
|
||||
}
|
||||
|
||||
// Called when a method call is received from Flutter.
|
||||
static void polyvox_filament_plugin_handle_method_call(
|
||||
PolyvoxFilamentPlugin* self,
|
||||
static void flutter_filament_plugin_handle_method_call(
|
||||
FlutterFilamentPlugin* self,
|
||||
FlMethodCall* method_call) {
|
||||
|
||||
g_autoptr(FlMethodResponse) response = nullptr;
|
||||
@@ -842,25 +842,25 @@ static void polyvox_filament_plugin_handle_method_call(
|
||||
|
||||
}
|
||||
|
||||
static void polyvox_filament_plugin_dispose(GObject* object) {
|
||||
G_OBJECT_CLASS(polyvox_filament_plugin_parent_class)->dispose(object);
|
||||
static void flutter_filament_plugin_dispose(GObject* object) {
|
||||
G_OBJECT_CLASS(flutter_filament_plugin_parent_class)->dispose(object);
|
||||
}
|
||||
|
||||
static void polyvox_filament_plugin_class_init(PolyvoxFilamentPluginClass* klass) {
|
||||
G_OBJECT_CLASS(klass)->dispose = polyvox_filament_plugin_dispose;
|
||||
static void flutter_filament_plugin_class_init(FlutterFilamentPluginClass* klass) {
|
||||
G_OBJECT_CLASS(klass)->dispose = flutter_filament_plugin_dispose;
|
||||
}
|
||||
|
||||
static void polyvox_filament_plugin_init(PolyvoxFilamentPlugin* self) {}
|
||||
static void flutter_filament_plugin_init(FlutterFilamentPlugin* self) {}
|
||||
|
||||
static void method_call_cb(FlMethodChannel* channel, FlMethodCall* method_call,
|
||||
gpointer user_data) {
|
||||
PolyvoxFilamentPlugin* plugin = POLYVOX_FILAMENT_PLUGIN(user_data);
|
||||
polyvox_filament_plugin_handle_method_call(plugin, method_call);
|
||||
FlutterFilamentPlugin* plugin = FLUTTER_FILAMENT_PLUGIN(user_data);
|
||||
flutter_filament_plugin_handle_method_call(plugin, method_call);
|
||||
}
|
||||
|
||||
void polyvox_filament_plugin_register_with_registrar(FlPluginRegistrar* registrar) {
|
||||
PolyvoxFilamentPlugin* plugin = POLYVOX_FILAMENT_PLUGIN(
|
||||
g_object_new(polyvox_filament_plugin_get_type(), nullptr));
|
||||
void flutter_filament_plugin_register_with_registrar(FlPluginRegistrar* registrar) {
|
||||
FlutterFilamentPlugin* plugin = FLUTTER_FILAMENT_PLUGIN(
|
||||
g_object_new(flutter_filament_plugin_get_type(), nullptr));
|
||||
|
||||
FlView* fl_view = fl_plugin_registrar_get_view(registrar);
|
||||
plugin->fl_view = fl_view;
|
||||
@@ -1,6 +1,6 @@
|
||||
#include <flutter_linux/flutter_linux.h>
|
||||
|
||||
#include "include/polyvox_filament/polyvox_filament_plugin.h"
|
||||
#include "include/flutter_filament/flutter_filament_plugin.h"
|
||||
|
||||
// This file exposes some plugin internals for unit testing. See
|
||||
// https://github.com/flutter/flutter/issues/88724 for current limitations
|
||||
27
linux/include/flutter_filament/flutter_filament_plugin.h
Normal file
27
linux/include/flutter_filament/flutter_filament_plugin.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#ifndef FLUTTER_PLUGIN_FLUTTER_FILAMENT_PLUGIN_H_
|
||||
#define FLUTTER_PLUGIN_FLUTTER_FILAMENT_PLUGIN_H_
|
||||
|
||||
#include <flutter_linux/flutter_linux.h>
|
||||
#include <epoxy/gl.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#ifdef FLUTTER_PLUGIN_IMPL
|
||||
#define FLUTTER_PLUGIN_EXPORT __attribute__((visibility("default")))
|
||||
#else
|
||||
#define FLUTTER_PLUGIN_EXPORT
|
||||
#endif
|
||||
|
||||
typedef struct _FlutterFilamentPlugin FlutterFilamentPlugin;
|
||||
typedef struct {
|
||||
GObjectClass parent_class;
|
||||
} FlutterFilamentPluginClass;
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT GType flutter_filament_plugin_get_type();
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT void flutter_filament_plugin_register_with_registrar(
|
||||
FlPluginRegistrar* registrar);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif // FLUTTER_PLUGIN_FLUTTER_FILAMENT_PLUGIN_H_
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef POLYVOX_FILAMENT_LINUX_RESOURCE_LOADER_H
|
||||
#define POLYVOX_FILAMENT_LINUX_RESOURCE_LOADER_H
|
||||
#ifndef FLUTTER_FILAMENT_LINUX_RESOURCE_LOADER_H
|
||||
#define FLUTTER_FILAMENT_LINUX_RESOURCE_LOADER_H
|
||||
|
||||
#include <math.h>
|
||||
#include <iostream>
|
||||
@@ -1,27 +0,0 @@
|
||||
#ifndef FLUTTER_PLUGIN_POLYVOX_FILAMENT_PLUGIN_H_
|
||||
#define FLUTTER_PLUGIN_POLYVOX_FILAMENT_PLUGIN_H_
|
||||
|
||||
#include <flutter_linux/flutter_linux.h>
|
||||
#include <epoxy/gl.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#ifdef FLUTTER_PLUGIN_IMPL
|
||||
#define FLUTTER_PLUGIN_EXPORT __attribute__((visibility("default")))
|
||||
#else
|
||||
#define FLUTTER_PLUGIN_EXPORT
|
||||
#endif
|
||||
|
||||
typedef struct _PolyvoxFilamentPlugin PolyvoxFilamentPlugin;
|
||||
typedef struct {
|
||||
GObjectClass parent_class;
|
||||
} PolyvoxFilamentPluginClass;
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT GType polyvox_filament_plugin_get_type();
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT void polyvox_filament_plugin_register_with_registrar(
|
||||
FlPluginRegistrar* registrar);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif // FLUTTER_PLUGIN_POLYVOX_FILAMENT_PLUGIN_H_
|
||||
@@ -2,8 +2,8 @@
|
||||
#include <gmock/gmock.h>
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include "include/polyvox_filament/polyvox_filament_plugin.h"
|
||||
#include "polyvox_filament_plugin_private.h"
|
||||
#include "include/flutter_filament/flutter_filament_plugin.h"
|
||||
#include "flutter_filament_plugin_private.h"
|
||||
|
||||
// This demonstrates a simple unit test of the C portion of this plugin's
|
||||
// implementation.
|
||||
@@ -13,10 +13,10 @@
|
||||
// built for x64 debug, run:
|
||||
// $ build/linux/x64/debug/plugins/my_plugin/my_plugin_test
|
||||
|
||||
namespace polyvox_filament {
|
||||
namespace flutter_filament {
|
||||
namespace test {
|
||||
|
||||
TEST(PolyvoxFilamentPlugin, GetPlatformVersion) {
|
||||
TEST(FlutterFilamentPlugin, GetPlatformVersion) {
|
||||
g_autoptr(FlMethodResponse) response = get_platform_version();
|
||||
ASSERT_NE(response, nullptr);
|
||||
ASSERT_TRUE(FL_IS_METHOD_SUCCESS_RESPONSE(response));
|
||||
@@ -28,4 +28,4 @@ TEST(PolyvoxFilamentPlugin, GetPlatformVersion) {
|
||||
}
|
||||
|
||||
} // namespace test
|
||||
} // namespace polyvox_filament
|
||||
} // namespace flutter_filament
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import FlutterMacOS
|
||||
import GLKit
|
||||
|
||||
public class SwiftPolyvoxFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture {
|
||||
public class SwiftFlutterFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture {
|
||||
|
||||
var registrar : FlutterPluginRegistrar
|
||||
var flutterTextureId: Int64?
|
||||
@@ -23,7 +23,7 @@ public class SwiftPolyvoxFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture
|
||||
|
||||
var loadResource : @convention(c) (UnsafePointer<Int8>?, UnsafeMutableRawPointer?) -> ResourceBuffer = { uri, resourcesPtr in
|
||||
|
||||
let instance:SwiftPolyvoxFilamentPlugin = Unmanaged<SwiftPolyvoxFilamentPlugin>.fromOpaque(resourcesPtr!).takeUnretainedValue()
|
||||
let instance:SwiftFlutterFilamentPlugin = Unmanaged<SwiftFlutterFilamentPlugin>.fromOpaque(resourcesPtr!).takeUnretainedValue()
|
||||
|
||||
var uriString = String(cString:uri!)
|
||||
|
||||
@@ -58,12 +58,12 @@ public class SwiftPolyvoxFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture
|
||||
}
|
||||
|
||||
var freeResource : @convention(c) (ResourceBuffer,UnsafeMutableRawPointer?) -> () = { rbuf, resourcesPtr in
|
||||
let instance:SwiftPolyvoxFilamentPlugin = Unmanaged<SwiftPolyvoxFilamentPlugin>.fromOpaque(resourcesPtr!).takeUnretainedValue()
|
||||
let instance:SwiftFlutterFilamentPlugin = Unmanaged<SwiftFlutterFilamentPlugin>.fromOpaque(resourcesPtr!).takeUnretainedValue()
|
||||
instance.resources.removeValue(forKey:UInt32(rbuf.id))
|
||||
}
|
||||
|
||||
var markTextureFrameAvailable : @convention(c) (UnsafeMutableRawPointer?) -> () = { instancePtr in
|
||||
let instance:SwiftPolyvoxFilamentPlugin = Unmanaged<SwiftPolyvoxFilamentPlugin>.fromOpaque(instancePtr!).takeUnretainedValue()
|
||||
let instance:SwiftFlutterFilamentPlugin = Unmanaged<SwiftFlutterFilamentPlugin>.fromOpaque(instancePtr!).takeUnretainedValue()
|
||||
if(instance.flutterTextureId != nil) {
|
||||
instance.registry.textureFrameAvailable(instance.flutterTextureId!)
|
||||
}
|
||||
@@ -84,7 +84,7 @@ public class SwiftPolyvoxFilamentPlugin: NSObject, FlutterPlugin, FlutterTexture
|
||||
let _messenger = registrar.messenger;
|
||||
messenger = _messenger;
|
||||
let channel = FlutterMethodChannel(name: "app.polyvox.filament/event", binaryMessenger: _messenger)
|
||||
let instance = SwiftPolyvoxFilamentPlugin(textureRegistry: registrar.textures, registrar:registrar)
|
||||
let instance = SwiftFlutterFilamentPlugin(textureRegistry: registrar.textures, registrar:registrar)
|
||||
registrar.addMethodCallDelegate(instance, channel: channel)
|
||||
}
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#
|
||||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
|
||||
# Run `pod lib lint polyvox_filament.podspec` to validate before publishing.
|
||||
# Run `pod lib lint flutter_filament.podspec` to validate before publishing.
|
||||
#
|
||||
Pod::Spec.new do |s|
|
||||
s.name = 'polyvox_filament'
|
||||
s.name = 'flutter_filament'
|
||||
s.version = '0.0.1'
|
||||
s.summary = 'A new Flutter plugin project.'
|
||||
s.description = <<-DESC
|
||||
@@ -15,7 +15,7 @@ A new Flutter plugin project.
|
||||
|
||||
s.source = { :path => '.' }
|
||||
s.source_files = 'Classes/*', 'src/*', "src/camutils/*", 'include/filament/*', 'include/*', 'include/material/*.c'
|
||||
s.public_header_files = 'include/SwiftPolyvoxFilamentPlugin-Bridging-Header.h', 'include/PolyvoxFilamentApi.h', 'include/PolyvoxFilamentFFIApi.h', 'include/ResourceBuffer.hpp' #, 'include/filament/*'
|
||||
s.public_header_files = 'include/SwiftFlutterFilamentPlugin-Bridging-Header.h', 'include/FlutterFilamentApi.h', 'include/FlutterFilamentFFIApi.h', 'include/ResourceBuffer.hpp' #, 'include/filament/*'
|
||||
s.dependency 'FlutterMacOS'
|
||||
|
||||
s.platform = :osx, '13'
|
||||
@@ -24,10 +24,10 @@ A new Flutter plugin project.
|
||||
# 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386',
|
||||
# "CLANG_CXX_LANGUAGE_STANDARD" => "c++17",
|
||||
# 'OTHER_CFLAGS' => '"-fvisibility=default" "$(inherited)"',
|
||||
# 'USER_HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/macos/zzzinclude" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/macos/src" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/macos/src/image" "${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/macos/src/shaders" "$(inherited)"',
|
||||
# 'USER_HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/flutter_filament/macos/zzzinclude" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/macos/src" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/macos/src/image" "${PODS_ROOT}/../.symlinks/plugins/flutter_filament/macos/src/shaders" "$(inherited)"',
|
||||
# 'ALWAYS_SEARCH_USER_PATHS' => 'YES',
|
||||
# "OTHER_LDFLAGS" => '-lfilament -lbackend -lfilameshio -lviewer -lfilamat -lgeometry -lutils -lfilabridge -lgltfio_core -lfilament-iblprefilter -limage -limageio -ltinyexr -lcamutils -lgltfio_core -lfilaflat -ldracodec -libl -lktxreader -lpng -lpng16 -lz -lstb -luberzlib -lsmol-v -luberarchive -lzstd',
|
||||
# 'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/polyvox_filament/macos/lib" "$(inherited)"',
|
||||
# 'LIBRARY_SEARCH_PATHS' => '"${PODS_ROOT}/../.symlinks/plugins/flutter_filament/macos/lib" "$(inherited)"',
|
||||
# }
|
||||
|
||||
s.pod_target_xcconfig = {
|
||||
@@ -1,13 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#ifndef POLYVOX_FILAMENT_LOG_H
|
||||
#define POLYVOX_FILAMENT_LOG_H
|
||||
#ifndef FLUTTER_FILAMENT_LOG_H
|
||||
#define FLUTTER_FILAMENT_LOG_H
|
||||
|
||||
#ifdef __OBJC__
|
||||
#import <Foundation/Foundation.h>
|
||||
#elif defined __ANDROID__
|
||||
#include <android/log.h>
|
||||
#define LOGTAG "PolyvoxFilament"
|
||||
#define LOGTAG "FlutterFilament"
|
||||
#else
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef _POLYVOX_FILAMENT_API_H
|
||||
#define _POLYVOX_FILAMENT_API_H
|
||||
#ifndef _FLUTTER_FILAMENT_API_H
|
||||
#define _FLUTTER_FILAMENT_API_H
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifdef IS_DLL
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
#ifndef _POLYVOX_FILAMENT_FFI_API_H
|
||||
#define _POLYVOX_FILAMENT_FFI_API_H
|
||||
#ifndef _FLUTTER_FILAMENT_FFI_API_H
|
||||
#define _FLUTTER_FILAMENT_FFI_API_H
|
||||
|
||||
#include "PolyvoxFilamentApi.h"
|
||||
#include "FlutterFilamentApi.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
///
|
||||
/// This header replicates most of the methods in PolyvoxFilamentApi.h, and is only intended to be used to generate client FFI bindings.
|
||||
/// The intention is that calling one of these methods will call its respective method in PolyvoxFilamentApi.h, but wrapped in some kind of thread runner to ensure thread safety.
|
||||
/// This header replicates most of the methods in FlutterFilamentApi.h, and is only intended to be used to generate client FFI bindings.
|
||||
/// The intention is that calling one of these methods will call its respective method in FlutterFilamentApi.h, but wrapped in some kind of thread runner to ensure thread safety.
|
||||
///
|
||||
|
||||
typedef int32_t EntityId;
|
||||
@@ -92,4 +92,4 @@ FLUTTER_PLUGIN_EXPORT void ios_dummy_ffi();
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // _POLYVOX_FILAMENT_FFI_API_H
|
||||
#endif // _FLUTTER_FILAMENT_FFI_API_H
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#import <Flutter/Flutter.h>
|
||||
|
||||
@interface PolyvoxFilamentPlugin : NSObject<FlutterPlugin>
|
||||
@interface FlutterFilamentPlugin : NSObject<FlutterPlugin>
|
||||
@end
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#include <utils/NameComponentManager.h>
|
||||
|
||||
extern "C" {
|
||||
#include "PolyvoxFilamentApi.h"
|
||||
#include "FlutterFilamentApi.h"
|
||||
}
|
||||
template class std::vector<float>;
|
||||
namespace polyvox {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#ifndef SwiftPolyvoxFilamentPlugin_Bridging_Header_h
|
||||
#define SwiftPolyvoxFilamentPlugin_Bridging_Header_h
|
||||
#ifndef SwiftFlutterFilamentPlugin_Bridging_Header_h
|
||||
#define SwiftFlutterFilamentPlugin_Bridging_Header_h
|
||||
|
||||
#import "PolyvoxFilamentApi.h"
|
||||
#import "PolyvoxFilamentFFIApi.h"
|
||||
#import "FlutterFilamentApi.h"
|
||||
#import "FlutterFilamentFFIApi.h"
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#ifndef _THREADPOOL_HPP
|
||||
#define _THREADPOOL_HPP
|
||||
|
||||
namespace polyvox_filament {
|
||||
namespace flutter_filament {
|
||||
|
||||
class ThreadPool {
|
||||
std::vector<std::thread> pool;
|
||||
|
||||
@@ -13,7 +13,7 @@ using namespace polyvox;
|
||||
|
||||
extern "C" {
|
||||
|
||||
#include "PolyvoxFilamentApi.h"
|
||||
#include "FlutterFilamentApi.h"
|
||||
|
||||
FLUTTER_PLUGIN_EXPORT const void* create_filament_viewer(const void* context, const ResourceLoaderWrapper* const loader, void* const platform, const char* uberArchivePath) {
|
||||
return (const void*) new FilamentViewer(context, loader, platform, uberArchivePath);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
#include "PolyvoxFilamentFFIApi.h"
|
||||
#include "FlutterFilamentFFIApi.h"
|
||||
|
||||
#include "FilamentViewer.hpp"
|
||||
#include "Log.hpp"
|
||||
|
||||
18
pubspec.yaml
18
pubspec.yaml
@@ -1,4 +1,4 @@
|
||||
name: polyvox_filament
|
||||
name: flutter_filament
|
||||
description: A Flutter plugin to wrap the Filament rendering engine.
|
||||
version: 0.5.0
|
||||
homepage:
|
||||
@@ -28,22 +28,22 @@ ffigen:
|
||||
output: 'lib/generated_bindings.dart'
|
||||
headers:
|
||||
entry-points:
|
||||
- 'ios/include/PolyvoxFilamentFFIApi.h'
|
||||
- 'ios/include/FlutterFilamentFFIApi.h'
|
||||
|
||||
flutter:
|
||||
plugin:
|
||||
platforms:
|
||||
android:
|
||||
pluginClass: PolyvoxFilamentPlugin
|
||||
pluginClass: FlutterFilamentPlugin
|
||||
package: app.polyvox.filament
|
||||
ios:
|
||||
pluginClass: SwiftPolyvoxFilamentPlugin
|
||||
pluginClass: SwiftFlutterFilamentPlugin
|
||||
macos:
|
||||
pluginClass: SwiftPolyvoxFilamentPlugin
|
||||
pluginClass: SwiftFlutterFilamentPlugin
|
||||
windows:
|
||||
pluginClass: PolyvoxFilamentPluginCApi
|
||||
pluginClass: FlutterFilamentPluginCApi
|
||||
linux:
|
||||
pluginClass: PolyvoxFilamentPlugin
|
||||
pluginClass: FlutterFilamentPlugin
|
||||
web:
|
||||
pluginClass: PolyvoxFilamentPluginWeb
|
||||
fileName: PolyvoxFilamentPluginWeb.dart
|
||||
pluginClass: FlutterFilamentPluginWeb
|
||||
fileName: FlutterFilamentPluginWeb.dart
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
set(PROJECT_NAME "polyvox_filament")
|
||||
set(PROJECT_NAME "flutter_filament")
|
||||
project(${PROJECT_NAME})
|
||||
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++ -fPIC -Wno-unused-variable -Wno-unused-function")
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -Wno-unused-variable -Wno-unused-function")
|
||||
|
||||
set(PLUGIN_NAME "polyvox_filament_plugin")
|
||||
set(PLUGIN_NAME "flutter_filament_plugin")
|
||||
|
||||
link_directories("${CMAKE_CURRENT_SOURCE_DIR}/lib")
|
||||
|
||||
@@ -18,7 +18,7 @@ add_library(FILAMENT_SHADERS STATIC
|
||||
add_library(${PLUGIN_NAME} STATIC
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/AssetManager.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FilamentViewer.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/PolyvoxFilamentApi.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/FlutterFilamentApi.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/StreamBufferAdapter.cpp"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/../ios/src/TimeIt.cpp"
|
||||
)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# This is the CMakeCache file.
|
||||
# For build in directory: /Volumes/T7/polyvox/flutter/polyvox_filament/web/build
|
||||
# For build in directory: /Volumes/T7/polyvox/flutter/flutter_filament/web/build
|
||||
# It was generated by CMake: /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake
|
||||
# You can edit this file to change values found and used by cmake.
|
||||
# If you do not want to change any of the values, simply exit the editor.
|
||||
@@ -88,7 +88,7 @@ CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
|
||||
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
|
||||
|
||||
//Value Computed by CMake.
|
||||
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/pkgRedirects
|
||||
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/pkgRedirects
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_INSTALL_NAME_TOOL:FILEPATH=/usr/bin/install_name_tool
|
||||
@@ -149,7 +149,7 @@ CMAKE_PROJECT_DESCRIPTION:STATIC=
|
||||
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
|
||||
|
||||
//Value Computed by CMake
|
||||
CMAKE_PROJECT_NAME:STATIC=polyvox_filament
|
||||
CMAKE_PROJECT_NAME:STATIC=flutter_filament
|
||||
|
||||
//Path to a program.
|
||||
CMAKE_RANLIB:FILEPATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib
|
||||
@@ -220,16 +220,16 @@ CMAKE_TOOLCHAIN_FILE:UNINITIALIZED=/Users/nickfisher/Documents/emsdk/upstream/em
|
||||
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
|
||||
|
||||
//Value Computed by CMake
|
||||
polyvox_filament_BINARY_DIR:STATIC=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build
|
||||
flutter_filament_BINARY_DIR:STATIC=/Volumes/T7/polyvox/flutter/flutter_filament/web/build
|
||||
|
||||
//Value Computed by CMake
|
||||
polyvox_filament_IS_TOP_LEVEL:STATIC=ON
|
||||
flutter_filament_IS_TOP_LEVEL:STATIC=ON
|
||||
|
||||
//Value Computed by CMake
|
||||
polyvox_filament_SOURCE_DIR:STATIC=/Volumes/T7/polyvox/flutter/polyvox_filament/web
|
||||
flutter_filament_SOURCE_DIR:STATIC=/Volumes/T7/polyvox/flutter/flutter_filament/web
|
||||
|
||||
//Dependencies for the target
|
||||
polyvox_filament_plugin_LIB_DEPENDS:STATIC=general;FILAMENT_SHADERS;general;gltfio_core;general;filament;general;backend;general;geometry;general;filameshio;general;filament_viewer;general;filabridge;general;filament-iblprefilter;general;camutils;general;filaflat;general;dracodec;general;ibl;general;ktxreader;general;imageio;general;image;general;png;general;utils;general;tinyexr;general;stb;general;bluegl;general;uberzlib;general;smol-v;general;uberarchive;general;meshoptimizer;general;mathio;general;math;general;geometry;general;basis_transcoder;general;z;
|
||||
flutter_filament_plugin_LIB_DEPENDS:STATIC=general;FILAMENT_SHADERS;general;gltfio_core;general;filament;general;backend;general;geometry;general;filameshio;general;filament_viewer;general;filabridge;general;filament-iblprefilter;general;camutils;general;filaflat;general;dracodec;general;ibl;general;ktxreader;general;imageio;general;image;general;png;general;utils;general;tinyexr;general;stb;general;bluegl;general;uberzlib;general;smol-v;general;uberarchive;general;meshoptimizer;general;mathio;general;math;general;geometry;general;basis_transcoder;general;z;
|
||||
|
||||
|
||||
########################
|
||||
@@ -241,7 +241,7 @@ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_AR
|
||||
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||
//This is the directory where this CMakeCache.txt was created
|
||||
CMAKE_CACHEFILE_DIR:INTERNAL=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build
|
||||
CMAKE_CACHEFILE_DIR:INTERNAL=/Volumes/T7/polyvox/flutter/flutter_filament/web/build
|
||||
//Major version of cmake used to create the current loaded cache
|
||||
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
|
||||
//Minor version of cmake used to create the current loaded cache
|
||||
@@ -310,7 +310,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL=
|
||||
CMAKE_GENERATOR_TOOLSET:INTERNAL=
|
||||
//Source directory with the top level CMakeLists.txt file for this
|
||||
// project
|
||||
CMAKE_HOME_DIRECTORY:INTERNAL=/Volumes/T7/polyvox/flutter/polyvox_filament/web
|
||||
CMAKE_HOME_DIRECTORY:INTERNAL=/Volumes/T7/polyvox/flutter/flutter_filament/web
|
||||
//ADVANCED property for variable: CMAKE_INSTALL_NAME_TOOL
|
||||
CMAKE_INSTALL_NAME_TOOL-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_LINKER
|
||||
|
||||
@@ -53,16 +53,16 @@ events:
|
||||
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o"
|
||||
|
||||
The C compiler identification could not be found in:
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/3.27.3/CompilerIdC/._CMakeCCompilerId.c
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/3.27.3/CompilerIdC/._CMakeCCompilerId.c
|
||||
|
||||
The C compiler identification could not be found in:
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/3.27.3/CompilerIdC/._CMakeCCompilerId.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/3.27.3/CompilerIdC/._CMakeCCompilerId.o
|
||||
|
||||
The C compiler identification could not be found in:
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/3.27.3/CompilerIdC/._tmp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/3.27.3/CompilerIdC/._tmp
|
||||
|
||||
The C compiler identification is AppleClang, found in:
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/3.27.3/CompilerIdC/CMakeCCompilerId.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/3.27.3/CompilerIdC/CMakeCCompilerId.o
|
||||
|
||||
-
|
||||
kind: "message-v1"
|
||||
@@ -109,16 +109,16 @@ events:
|
||||
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o"
|
||||
|
||||
The CXX compiler identification could not be found in:
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/3.27.3/CompilerIdCXX/._CMakeCXXCompilerId.cpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/3.27.3/CompilerIdCXX/._CMakeCXXCompilerId.cpp
|
||||
|
||||
The CXX compiler identification could not be found in:
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/3.27.3/CompilerIdCXX/._CMakeCXXCompilerId.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/3.27.3/CompilerIdCXX/._CMakeCXXCompilerId.o
|
||||
|
||||
The CXX compiler identification could not be found in:
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/3.27.3/CompilerIdCXX/._tmp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/3.27.3/CompilerIdCXX/._tmp
|
||||
|
||||
The CXX compiler identification is AppleClang, found in:
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/3.27.3/CompilerIdCXX/CMakeCXXCompilerId.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/3.27.3/CompilerIdCXX/CMakeCXXCompilerId.o
|
||||
|
||||
-
|
||||
kind: "try_compile-v1"
|
||||
@@ -129,8 +129,8 @@ events:
|
||||
checks:
|
||||
- "Detecting C compiler ABI info"
|
||||
directories:
|
||||
source: "/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc"
|
||||
binary: "/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc"
|
||||
source: "/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc"
|
||||
binary: "/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc"
|
||||
cmakeVariables:
|
||||
CMAKE_C_FLAGS: ""
|
||||
CMAKE_C_FLAGS_DEBUG: "-g"
|
||||
@@ -142,7 +142,7 @@ events:
|
||||
variable: "CMAKE_C_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: '/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc'
|
||||
Change Dir: '/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc'
|
||||
|
||||
Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_64bfa/fast
|
||||
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_64bfa.dir/build.make CMakeFiles/cmTC_64bfa.dir/build
|
||||
@@ -153,7 +153,7 @@ events:
|
||||
Thread model: posix
|
||||
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
||||
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx13.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=13.3 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 857.1 -v -fcoverage-compilation-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3 -dependency-file CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdebug-compilation-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -no-opaque-pointers -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o -x c /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCCompilerABI.c
|
||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx13.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=13.3 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 857.1 -v -fcoverage-compilation-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3 -dependency-file CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdebug-compilation-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -no-opaque-pointers -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o -x c /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCCompilerABI.c
|
||||
clang -cc1 version 14.0.3 (clang-1403.0.22.14.1) default target arm64-apple-darwin22.6.0
|
||||
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include"
|
||||
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/Library/Frameworks"
|
||||
@@ -210,7 +210,7 @@ events:
|
||||
message: |
|
||||
Parsed C implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
ignore line: [Change Dir: '/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc']
|
||||
ignore line: [Change Dir: '/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_64bfa/fast]
|
||||
ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_64bfa.dir/build.make CMakeFiles/cmTC_64bfa.dir/build]
|
||||
@@ -221,7 +221,7 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
|
||||
ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]]
|
||||
ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx13.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=13.3 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 857.1 -v -fcoverage-compilation-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3 -dependency-file CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdebug-compilation-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -no-opaque-pointers -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o -x c /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx13.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=13.3 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 857.1 -v -fcoverage-compilation-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3 -dependency-file CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdebug-compilation-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-d0z3tc -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -no-opaque-pointers -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_64bfa.dir/CMakeCCompilerABI.c.o -x c /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [clang -cc1 version 14.0.3 (clang-1403.0.22.14.1) default target arm64-apple-darwin22.6.0]
|
||||
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include"]
|
||||
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/Library/Frameworks"]
|
||||
@@ -282,8 +282,8 @@ events:
|
||||
checks:
|
||||
- "Detecting CXX compiler ABI info"
|
||||
directories:
|
||||
source: "/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4"
|
||||
binary: "/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4"
|
||||
source: "/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4"
|
||||
binary: "/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4"
|
||||
cmakeVariables:
|
||||
CMAKE_CXX_FLAGS: ""
|
||||
CMAKE_CXX_FLAGS_DEBUG: "-g"
|
||||
@@ -295,7 +295,7 @@ events:
|
||||
variable: "CMAKE_CXX_ABI_COMPILED"
|
||||
cached: true
|
||||
stdout: |
|
||||
Change Dir: '/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4'
|
||||
Change Dir: '/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4'
|
||||
|
||||
Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_ac2a8/fast
|
||||
/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_ac2a8.dir/build.make CMakeFiles/cmTC_ac2a8.dir/build
|
||||
@@ -306,7 +306,7 @@ events:
|
||||
Thread model: posix
|
||||
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
||||
clang: warning: -Wl,-v: 'linker' input unused [-Wunused-command-line-argument]
|
||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx13.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=13.3 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 857.1 -v -fcoverage-compilation-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4 -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3 -dependency-file CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -stdlib=libc++ -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -no-opaque-pointers -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCXXCompilerABI.cpp
|
||||
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx13.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=13.3 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 857.1 -v -fcoverage-compilation-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4 -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3 -dependency-file CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -stdlib=libc++ -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -no-opaque-pointers -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCXXCompilerABI.cpp
|
||||
clang -cc1 version 14.0.3 (clang-1403.0.22.14.1) default target arm64-apple-darwin22.6.0
|
||||
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include"
|
||||
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/Library/Frameworks"
|
||||
@@ -366,7 +366,7 @@ events:
|
||||
message: |
|
||||
Parsed CXX implicit link information:
|
||||
link line regex: [^( *|.*[/\\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
||||
ignore line: [Change Dir: '/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4']
|
||||
ignore line: [Change Dir: '/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4']
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s): /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -E env VERBOSE=1 /usr/bin/make -f Makefile cmTC_ac2a8/fast]
|
||||
ignore line: [/Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/cmTC_ac2a8.dir/build.make CMakeFiles/cmTC_ac2a8.dir/build]
|
||||
@@ -377,7 +377,7 @@ events:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin]
|
||||
ignore line: [clang: warning: -Wl -v: 'linker' input unused [-Wunused-command-line-argument]]
|
||||
ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx13.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=13.3 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 857.1 -v -fcoverage-compilation-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4 -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3 -dependency-file CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -stdlib=libc++ -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -no-opaque-pointers -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [ "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple arm64-apple-macosx13.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=13.3 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=lldb -target-linker-version 857.1 -v -fcoverage-compilation-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4 -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3 -dependency-file CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -stdlib=libc++ -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/c++/v1 -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -fdeprecated-macro -fdebug-compilation-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/CMakeScratch/TryCompile-JvT8w4 -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -no-opaque-pointers -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_ac2a8.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/homebrew/Cellar/cmake/3.27.3/share/cmake/Modules/CMakeCXXCompilerABI.cpp]
|
||||
ignore line: [clang -cc1 version 14.0.3 (clang-1403.0.22.14.1) default target arm64-apple-darwin22.6.0]
|
||||
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/local/include"]
|
||||
ignore line: [ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/Library/Frameworks"]
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.27
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Volumes/T7/polyvox/flutter/polyvox_filament/web")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Volumes/T7/polyvox/flutter/polyvox_filament/web/build")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/Volumes/T7/polyvox/flutter/flutter_filament/web")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/Volumes/T7/polyvox/flutter/flutter_filament/web/build")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
@@ -8,8 +8,8 @@ set(CMAKE_DEPENDS_LANGUAGES
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c" "CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o" "gcc" "CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c" "CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o" "gcc" "CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c" "CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o" "gcc" "CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c" "CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o" "gcc" "CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o.d"
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
|
||||
@@ -53,10 +53,10 @@ RM = /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -E rm -f
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /Volumes/T7/polyvox/flutter/polyvox_filament/web
|
||||
CMAKE_SOURCE_DIR = /Volumes/T7/polyvox/flutter/flutter_filament/web
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /Volumes/T7/polyvox/flutter/polyvox_filament/web/build
|
||||
CMAKE_BINARY_DIR = /Volumes/T7/polyvox/flutter/flutter_filament/web/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/FILAMENT_SHADERS.dir/depend.make
|
||||
@@ -69,47 +69,47 @@ include CMakeFiles/FILAMENT_SHADERS.dir/progress.make
|
||||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/FILAMENT_SHADERS.dir/flags.make
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o: CMakeFiles/FILAMENT_SHADERS.dir/flags.make
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o: /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o: CMakeFiles/FILAMENT_SHADERS.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o -MF CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o.d -o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o -c /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o: CMakeFiles/FILAMENT_SHADERS.dir/flags.make
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o: /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o: CMakeFiles/FILAMENT_SHADERS.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o -MF CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o.d -o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o -c /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c > CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.i
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c > CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.i
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c -o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.s
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c -o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.s
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o: CMakeFiles/FILAMENT_SHADERS.dir/flags.make
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o: /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o: CMakeFiles/FILAMENT_SHADERS.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o -MF CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o.d -o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o -c /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o: CMakeFiles/FILAMENT_SHADERS.dir/flags.make
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o: /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o: CMakeFiles/FILAMENT_SHADERS.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -MD -MT CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o -MF CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o.d -o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o -c /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c > CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.i
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing C source to CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c > CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.i
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c -o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.s
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling C source to assembly CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c -o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.s
|
||||
|
||||
# Object files for target FILAMENT_SHADERS
|
||||
FILAMENT_SHADERS_OBJECTS = \
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o" \
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o"
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o" \
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o"
|
||||
|
||||
# External object files for target FILAMENT_SHADERS
|
||||
FILAMENT_SHADERS_EXTERNAL_OBJECTS =
|
||||
|
||||
libFILAMENT_SHADERS.dylib: CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o
|
||||
libFILAMENT_SHADERS.dylib: CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o
|
||||
libFILAMENT_SHADERS.dylib: CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o
|
||||
libFILAMENT_SHADERS.dylib: CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o
|
||||
libFILAMENT_SHADERS.dylib: CMakeFiles/FILAMENT_SHADERS.dir/build.make
|
||||
libFILAMENT_SHADERS.dylib: CMakeFiles/FILAMENT_SHADERS.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C shared library libFILAMENT_SHADERS.dylib"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C shared library libFILAMENT_SHADERS.dylib"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FILAMENT_SHADERS.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
@@ -121,6 +121,6 @@ CMakeFiles/FILAMENT_SHADERS.dir/clean:
|
||||
.PHONY : CMakeFiles/FILAMENT_SHADERS.dir/clean
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/depend:
|
||||
cd /Volumes/T7/polyvox/flutter/polyvox_filament/web/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Volumes/T7/polyvox/flutter/polyvox_filament/web /Volumes/T7/polyvox/flutter/polyvox_filament/web /Volumes/T7/polyvox/flutter/polyvox_filament/web/build /Volumes/T7/polyvox/flutter/polyvox_filament/web/build /Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/FILAMENT_SHADERS.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
cd /Volumes/T7/polyvox/flutter/flutter_filament/web/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Volumes/T7/polyvox/flutter/flutter_filament/web /Volumes/T7/polyvox/flutter/flutter_filament/web /Volumes/T7/polyvox/flutter/flutter_filament/web/build /Volumes/T7/polyvox/flutter/flutter_filament/web/build /Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/FILAMENT_SHADERS.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : CMakeFiles/FILAMENT_SHADERS.dir/depend
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o"
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o.d"
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o"
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o.d"
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o"
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o.d"
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o"
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o.d"
|
||||
"libFILAMENT_SHADERS.dylib"
|
||||
"libFILAMENT_SHADERS.pdb"
|
||||
)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.27
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_intmax_t.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_uint16_t.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_uint32_t.h
|
||||
@@ -31,8 +31,8 @@ CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/sys/cdefs.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdint.h
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_intmax_t.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_uint16_t.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_uint32_t.h
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.27
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o: /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c \
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o: /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c \
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_intmax_t.h \
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_uint16_t.h \
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_uint32_t.h \
|
||||
@@ -30,7 +30,7 @@ CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/sys/cdefs.h \
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdint.h
|
||||
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o: /Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c \
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o: /Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c \
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_intmax_t.h \
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_uint16_t.h \
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_uint32_t.h \
|
||||
@@ -60,7 +60,7 @@ CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdint.h
|
||||
|
||||
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c:
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c:
|
||||
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdint.h:
|
||||
|
||||
@@ -106,7 +106,7 @@ CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/
|
||||
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/sys/_types/_u_int8_t.h:
|
||||
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c:
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c:
|
||||
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/_types/_uint32_t.h:
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# compile C with /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
|
||||
C_DEFINES = -DFILAMENT_SHADERS_EXPORTS
|
||||
|
||||
C_INCLUDES = -I/Volumes/T7/polyvox/flutter/polyvox_filament/web/../ios/src -I/Volumes/T7/polyvox/flutter/polyvox_filament/web/../ios/include -I/Volumes/T7/polyvox/flutter/polyvox_filament/web/../example/linux
|
||||
C_INCLUDES = -I/Volumes/T7/polyvox/flutter/flutter_filament/web/../ios/src -I/Volumes/T7/polyvox/flutter/flutter_filament/web/../ios/include -I/Volumes/T7/polyvox/flutter/flutter_filament/web/../example/linux
|
||||
|
||||
C_FLAGSarm64 = -fPIC -Wno-unused-variable -Wno-unused-function -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -fPIC
|
||||
|
||||
|
||||
@@ -1 +1 @@
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wno-unused-variable -Wno-unused-function -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -dynamiclib -Wl,-headerpad_max_install_names -o libFILAMENT_SHADERS.dylib -install_name @rpath/libFILAMENT_SHADERS.dylib CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.c.o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.c.o -L/Volumes/T7/polyvox/flutter/polyvox_filament/web/lib
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -fPIC -Wno-unused-variable -Wno-unused-function -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk -dynamiclib -Wl,-headerpad_max_install_names -o libFILAMENT_SHADERS.dylib -install_name @rpath/libFILAMENT_SHADERS.dylib CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.c.o CMakeFiles/FILAMENT_SHADERS.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.c.o -L/Volumes/T7/polyvox/flutter/flutter_filament/web/lib
|
||||
|
||||
@@ -7,7 +7,7 @@ set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
|
||||
# The top level Makefile was generated from the following files:
|
||||
set(CMAKE_MAKEFILE_DEPENDS
|
||||
"CMakeCache.txt"
|
||||
"/Volumes/T7/polyvox/flutter/polyvox_filament/web/CMakeLists.txt"
|
||||
"/Volumes/T7/polyvox/flutter/flutter_filament/web/CMakeLists.txt"
|
||||
"CMakeFiles/3.27.3/CMakeCCompiler.cmake"
|
||||
"CMakeFiles/3.27.3/CMakeCXXCompiler.cmake"
|
||||
"CMakeFiles/3.27.3/CMakeSystem.cmake"
|
||||
@@ -48,5 +48,5 @@ set(CMAKE_MAKEFILE_PRODUCTS
|
||||
# Dependency information for all targets:
|
||||
set(CMAKE_DEPEND_INFO_FILES
|
||||
"CMakeFiles/FILAMENT_SHADERS.dir/DependInfo.cmake"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/DependInfo.cmake"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/DependInfo.cmake"
|
||||
)
|
||||
|
||||
@@ -54,17 +54,17 @@ RM = /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -E rm -f
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /Volumes/T7/polyvox/flutter/polyvox_filament/web
|
||||
CMAKE_SOURCE_DIR = /Volumes/T7/polyvox/flutter/flutter_filament/web
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /Volumes/T7/polyvox/flutter/polyvox_filament/web/build
|
||||
CMAKE_BINARY_DIR = /Volumes/T7/polyvox/flutter/flutter_filament/web/build
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for the build root directory
|
||||
|
||||
# The main recursive "all" target.
|
||||
all: CMakeFiles/FILAMENT_SHADERS.dir/all
|
||||
all: CMakeFiles/polyvox_filament_plugin.dir/all
|
||||
all: CMakeFiles/flutter_filament_plugin.dir/all
|
||||
.PHONY : all
|
||||
|
||||
# The main recursive "preinstall" target.
|
||||
@@ -73,7 +73,7 @@ preinstall:
|
||||
|
||||
# The main recursive "clean" target.
|
||||
clean: CMakeFiles/FILAMENT_SHADERS.dir/clean
|
||||
clean: CMakeFiles/polyvox_filament_plugin.dir/clean
|
||||
clean: CMakeFiles/flutter_filament_plugin.dir/clean
|
||||
.PHONY : clean
|
||||
|
||||
#=============================================================================
|
||||
@@ -83,14 +83,14 @@ clean: CMakeFiles/polyvox_filament_plugin.dir/clean
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/all:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/FILAMENT_SHADERS.dir/build.make CMakeFiles/FILAMENT_SHADERS.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/FILAMENT_SHADERS.dir/build.make CMakeFiles/FILAMENT_SHADERS.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=1,2,3 "Built target FILAMENT_SHADERS"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=1,2,3 "Built target FILAMENT_SHADERS"
|
||||
.PHONY : CMakeFiles/FILAMENT_SHADERS.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/FILAMENT_SHADERS.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles 3
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles 3
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/FILAMENT_SHADERS.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles 0
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/FILAMENT_SHADERS.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
@@ -103,30 +103,30 @@ CMakeFiles/FILAMENT_SHADERS.dir/clean:
|
||||
.PHONY : CMakeFiles/FILAMENT_SHADERS.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Target rules for target CMakeFiles/polyvox_filament_plugin.dir
|
||||
# Target rules for target CMakeFiles/flutter_filament_plugin.dir
|
||||
|
||||
# All Build rule for target.
|
||||
CMakeFiles/polyvox_filament_plugin.dir/all: CMakeFiles/FILAMENT_SHADERS.dir/all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/polyvox_filament_plugin.dir/build.make CMakeFiles/polyvox_filament_plugin.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/polyvox_filament_plugin.dir/build.make CMakeFiles/polyvox_filament_plugin.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=4,5,6,7,8,9 "Built target polyvox_filament_plugin"
|
||||
.PHONY : CMakeFiles/polyvox_filament_plugin.dir/all
|
||||
CMakeFiles/flutter_filament_plugin.dir/all: CMakeFiles/FILAMENT_SHADERS.dir/all
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/flutter_filament_plugin.dir/build.make CMakeFiles/flutter_filament_plugin.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/flutter_filament_plugin.dir/build.make CMakeFiles/flutter_filament_plugin.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=4,5,6,7,8,9 "Built target flutter_filament_plugin"
|
||||
.PHONY : CMakeFiles/flutter_filament_plugin.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/polyvox_filament_plugin.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles 9
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/polyvox_filament_plugin.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/polyvox_filament_plugin.dir/rule
|
||||
CMakeFiles/flutter_filament_plugin.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles 9
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/flutter_filament_plugin.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles 0
|
||||
.PHONY : CMakeFiles/flutter_filament_plugin.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
polyvox_filament_plugin: CMakeFiles/polyvox_filament_plugin.dir/rule
|
||||
.PHONY : polyvox_filament_plugin
|
||||
flutter_filament_plugin: CMakeFiles/flutter_filament_plugin.dir/rule
|
||||
.PHONY : flutter_filament_plugin
|
||||
|
||||
# clean rule for target.
|
||||
CMakeFiles/polyvox_filament_plugin.dir/clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/polyvox_filament_plugin.dir/build.make CMakeFiles/polyvox_filament_plugin.dir/clean
|
||||
.PHONY : CMakeFiles/polyvox_filament_plugin.dir/clean
|
||||
CMakeFiles/flutter_filament_plugin.dir/clean:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/flutter_filament_plugin.dir/build.make CMakeFiles/flutter_filament_plugin.dir/clean
|
||||
.PHONY : CMakeFiles/flutter_filament_plugin.dir/clean
|
||||
|
||||
#=============================================================================
|
||||
# Special targets to cleanup operation of make.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/FILAMENT_SHADERS.dir
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/polyvox_filament_plugin.dir
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/edit_cache.dir
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/rebuild_cache.dir
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/FILAMENT_SHADERS.dir
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/flutter_filament_plugin.dir
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/edit_cache.dir
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/rebuild_cache.dir
|
||||
|
||||
@@ -8,11 +8,11 @@ set(CMAKE_DEPENDS_LANGUAGES
|
||||
|
||||
# The set of dependency files which are needed:
|
||||
set(CMAKE_DEPENDS_DEPENDENCY_FILES
|
||||
"/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o" "gcc" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o" "gcc" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o" "gcc" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o" "gcc" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o" "gcc" "CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o" "gcc" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o" "gcc" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o" "gcc" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o" "gcc" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o.d"
|
||||
"/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o" "gcc" "CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o.d"
|
||||
)
|
||||
|
||||
# Targets to which this target links which contain Fortran sources.
|
||||
|
||||
@@ -53,152 +53,152 @@ RM = /opt/homebrew/Cellar/cmake/3.27.3/bin/cmake -E rm -f
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /Volumes/T7/polyvox/flutter/polyvox_filament/web
|
||||
CMAKE_SOURCE_DIR = /Volumes/T7/polyvox/flutter/flutter_filament/web
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /Volumes/T7/polyvox/flutter/polyvox_filament/web/build
|
||||
CMAKE_BINARY_DIR = /Volumes/T7/polyvox/flutter/flutter_filament/web/build
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/polyvox_filament_plugin.dir/depend.make
|
||||
include CMakeFiles/flutter_filament_plugin.dir/depend.make
|
||||
# Include any dependencies generated by the compiler for this target.
|
||||
include CMakeFiles/polyvox_filament_plugin.dir/compiler_depend.make
|
||||
include CMakeFiles/flutter_filament_plugin.dir/compiler_depend.make
|
||||
|
||||
# Include the progress variables for this target.
|
||||
include CMakeFiles/polyvox_filament_plugin.dir/progress.make
|
||||
include CMakeFiles/flutter_filament_plugin.dir/progress.make
|
||||
|
||||
# Include the compile flags for this target's objects.
|
||||
include CMakeFiles/polyvox_filament_plugin.dir/flags.make
|
||||
include CMakeFiles/flutter_filament_plugin.dir/flags.make
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/flags.make
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o: /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o -MF CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o.d -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o -c /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o: CMakeFiles/flutter_filament_plugin.dir/flags.make
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o: /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o: CMakeFiles/flutter_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o -MF CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o.d -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o -c /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp > CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.i
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp > CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.i
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.s
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.s
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/flags.make
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o: /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o -MF CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o.d -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o -c /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o: CMakeFiles/flutter_filament_plugin.dir/flags.make
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o: /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o: CMakeFiles/flutter_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o -MF CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o.d -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o -c /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp > CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.i
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp > CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.i
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.s
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.s
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/flags.make
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o: /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o -MF CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o.d -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o -c /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o: CMakeFiles/flutter_filament_plugin.dir/flags.make
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o: /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o: CMakeFiles/flutter_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o -MF CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o.d -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o -c /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp > CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.i
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp > CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.i
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.s
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.s
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/flags.make
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o: /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o -MF CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o.d -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o -c /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o: CMakeFiles/flutter_filament_plugin.dir/flags.make
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o: /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o: CMakeFiles/flutter_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o -MF CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o.d -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o -c /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp > CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.i
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp > CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.i
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.s
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.s
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/flags.make
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o: /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o: CMakeFiles/polyvox_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o -MF CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o.d -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o -c /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o: CMakeFiles/flutter_filament_plugin.dir/flags.make
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o: /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o: CMakeFiles/flutter_filament_plugin.dir/compiler_depend.ts
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -MD -MT CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o -MF CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o.d -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o -c /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp > CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.i
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Preprocessing CXX source to CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.i"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp > CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.i
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp -o CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.s
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green "Compiling CXX source to assembly CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.s"
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp -o CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.s
|
||||
|
||||
# Object files for target polyvox_filament_plugin
|
||||
polyvox_filament_plugin_OBJECTS = \
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o" \
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o" \
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o" \
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o" \
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o"
|
||||
# Object files for target flutter_filament_plugin
|
||||
flutter_filament_plugin_OBJECTS = \
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o" \
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o" \
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o" \
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o" \
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o"
|
||||
|
||||
# External object files for target polyvox_filament_plugin
|
||||
polyvox_filament_plugin_EXTERNAL_OBJECTS =
|
||||
# External object files for target flutter_filament_plugin
|
||||
flutter_filament_plugin_EXTERNAL_OBJECTS =
|
||||
|
||||
libpolyvox_filament_plugin.dylib: CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o
|
||||
libpolyvox_filament_plugin.dylib: CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o
|
||||
libpolyvox_filament_plugin.dylib: CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o
|
||||
libpolyvox_filament_plugin.dylib: CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o
|
||||
libpolyvox_filament_plugin.dylib: CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o
|
||||
libpolyvox_filament_plugin.dylib: CMakeFiles/polyvox_filament_plugin.dir/build.make
|
||||
libpolyvox_filament_plugin.dylib: libFILAMENT_SHADERS.dylib
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libgltfio_core.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libfilament.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libbackend.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libgeometry.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libfilameshio.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libviewer.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libfilabridge.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libfilament-iblprefilter.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libcamutils.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libfilaflat.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libdracodec.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libibl.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libktxreader.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libimageio.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libimage.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libpng.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libutils.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libtinyexr.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libstb.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libbluegl.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libuberzlib.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libsmol-v.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libuberarchive.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libmeshoptimizer.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libmathio.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libmath.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libgeometry.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libbasis_transcoder.a
|
||||
libpolyvox_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/polyvox_filament/web/lib/libz.a
|
||||
libpolyvox_filament_plugin.dylib: CMakeFiles/polyvox_filament_plugin.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking CXX shared library libpolyvox_filament_plugin.dylib"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/polyvox_filament_plugin.dir/link.txt --verbose=$(VERBOSE)
|
||||
libflutter_filament_plugin.dylib: CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o
|
||||
libflutter_filament_plugin.dylib: CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o
|
||||
libflutter_filament_plugin.dylib: CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o
|
||||
libflutter_filament_plugin.dylib: CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o
|
||||
libflutter_filament_plugin.dylib: CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o
|
||||
libflutter_filament_plugin.dylib: CMakeFiles/flutter_filament_plugin.dir/build.make
|
||||
libflutter_filament_plugin.dylib: libFILAMENT_SHADERS.dylib
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libgltfio_core.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libfilament.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libbackend.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libgeometry.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libfilameshio.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libviewer.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libfilabridge.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libfilament-iblprefilter.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libcamutils.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libfilaflat.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libdracodec.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libibl.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libktxreader.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libimageio.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libimage.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libpng.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libutils.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libtinyexr.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libstb.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libbluegl.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libuberzlib.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libsmol-v.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libuberarchive.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libmeshoptimizer.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libmathio.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libmath.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libgeometry.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libbasis_transcoder.a
|
||||
libflutter_filament_plugin.dylib: /Volumes/T7/polyvox/flutter/flutter_filament/web/lib/libz.a
|
||||
libflutter_filament_plugin.dylib: CMakeFiles/flutter_filament_plugin.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color "--switch=$(COLOR)" --green --bold --progress-dir=/Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking CXX shared library libflutter_filament_plugin.dylib"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/flutter_filament_plugin.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
CMakeFiles/polyvox_filament_plugin.dir/build: libpolyvox_filament_plugin.dylib
|
||||
.PHONY : CMakeFiles/polyvox_filament_plugin.dir/build
|
||||
CMakeFiles/flutter_filament_plugin.dir/build: libflutter_filament_plugin.dylib
|
||||
.PHONY : CMakeFiles/flutter_filament_plugin.dir/build
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/polyvox_filament_plugin.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/polyvox_filament_plugin.dir/clean
|
||||
CMakeFiles/flutter_filament_plugin.dir/clean:
|
||||
$(CMAKE_COMMAND) -P CMakeFiles/flutter_filament_plugin.dir/cmake_clean.cmake
|
||||
.PHONY : CMakeFiles/flutter_filament_plugin.dir/clean
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/depend:
|
||||
cd /Volumes/T7/polyvox/flutter/polyvox_filament/web/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Volumes/T7/polyvox/flutter/polyvox_filament/web /Volumes/T7/polyvox/flutter/polyvox_filament/web /Volumes/T7/polyvox/flutter/polyvox_filament/web/build /Volumes/T7/polyvox/flutter/polyvox_filament/web/build /Volumes/T7/polyvox/flutter/polyvox_filament/web/build/CMakeFiles/polyvox_filament_plugin.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : CMakeFiles/polyvox_filament_plugin.dir/depend
|
||||
CMakeFiles/flutter_filament_plugin.dir/depend:
|
||||
cd /Volumes/T7/polyvox/flutter/flutter_filament/web/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /Volumes/T7/polyvox/flutter/flutter_filament/web /Volumes/T7/polyvox/flutter/flutter_filament/web /Volumes/T7/polyvox/flutter/flutter_filament/web/build /Volumes/T7/polyvox/flutter/flutter_filament/web/build /Volumes/T7/polyvox/flutter/flutter_filament/web/build/CMakeFiles/flutter_filament_plugin.dir/DependInfo.cmake "--color=$(COLOR)"
|
||||
.PHONY : CMakeFiles/flutter_filament_plugin.dir/depend
|
||||
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
file(REMOVE_RECURSE
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o.d"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o.d"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o.d"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o.d"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o"
|
||||
"CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o.d"
|
||||
"libpolyvox_filament_plugin.dylib"
|
||||
"libpolyvox_filament_plugin.pdb"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o.d"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o.d"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o.d"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o.d"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o"
|
||||
"CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o.d"
|
||||
"libflutter_filament_plugin.dylib"
|
||||
"libflutter_filament_plugin.pdb"
|
||||
)
|
||||
|
||||
# Per-language clean rules from dependency scanning.
|
||||
foreach(lang CXX)
|
||||
include(CMakeFiles/polyvox_filament_plugin.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
include(CMakeFiles/flutter_filament_plugin.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
||||
endforeach()
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
# CMAKE generated file: DO NOT EDIT!
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.27
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/AssetManager.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/AssetManager.cpp
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Availability.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityInternal.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityVersions.h
|
||||
@@ -737,98 +737,98 @@ CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filame
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdarg.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stddef.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdint.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/AssetManager.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/Log.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/PolyvoxFilamentApi.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/ResourceBuffer.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/SceneAsset.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/StreamBufferAdapter.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/BufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/CallbackHandler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/DriverEnums.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/PixelBufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/Platform.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/PresentCallable.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Box.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Color.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Engine.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/FilamentAPI.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Material.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/MaterialEnums.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/MaterialInstance.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/MorphTargetBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/RenderableManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Renderer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Scene.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Texture.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/TextureSampler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/TransformManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/VertexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/Animator.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/AssetLoader.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/FilamentAsset.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/FilamentInstance.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/MaterialProvider.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/NodeManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/ResourceLoader.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/TextureProvider.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/materials/uberarchive.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/math.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/image/LinearImage.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/imageio/ImageDecoder.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/FileMaterialProvider.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/StandardMaterialProvider.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/UnlitMaterialProvider.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/standard.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/unlit_opaque.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/TMatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/TQuatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/TVecHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/half.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/mat3.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/mat4.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/mathfwd.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/norm.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/quat.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/scalar.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/vec2.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/vec3.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/vec4.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/tsl/robin_growth_policy.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/tsl/robin_hash.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/tsl/robin_map.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Allocator.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/BitmaskEnum.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/CString.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/CallStack.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Entity.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/EntityInstance.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/EntityManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/FixedCapacityVector.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Invocable.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Log.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/NameComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Panic.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/PrivateImplementation.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/SingleInstanceComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Slice.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/SpinLock.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/StructureOfArrays.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/algorithm.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/bitset.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/compressed_pair.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/debug.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/generic/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/memalign.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/ostream.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/unwindows.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/AssetManager.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/Log.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/FlutterFilamentApi.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/ResourceBuffer.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/SceneAsset.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/StreamBufferAdapter.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/BufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/CallbackHandler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/DriverEnums.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/PixelBufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/Platform.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/PresentCallable.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Box.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Color.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Engine.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/FilamentAPI.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Material.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/MaterialEnums.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/MaterialInstance.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/MorphTargetBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/RenderableManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Renderer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Scene.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Texture.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/TextureSampler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/TransformManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/VertexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/Animator.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/AssetLoader.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/FilamentAsset.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/FilamentInstance.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/MaterialProvider.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/NodeManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/ResourceLoader.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/TextureProvider.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/materials/uberarchive.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/math.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/image/LinearImage.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/imageio/ImageDecoder.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/FileMaterialProvider.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/StandardMaterialProvider.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/UnlitMaterialProvider.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/standard.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/unlit_opaque.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/TMatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/TQuatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/TVecHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/half.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/mat3.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/mat4.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/mathfwd.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/norm.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/quat.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/scalar.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/vec2.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/vec3.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/vec4.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/tsl/robin_growth_policy.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/tsl/robin_hash.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/tsl/robin_map.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Allocator.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/BitmaskEnum.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/CString.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/CallStack.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Entity.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/EntityInstance.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/EntityManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/FixedCapacityVector.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Invocable.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Log.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/NameComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Panic.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/PrivateImplementation.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/SingleInstanceComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Slice.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/SpinLock.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/StructureOfArrays.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/algorithm.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/bitset.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/compressed_pair.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/debug.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/generic/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/memalign.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/ostream.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/unwindows.h
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/FilamentViewer.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FilamentViewer.cpp
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Availability.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityInternal.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityVersions.h
|
||||
@@ -1581,113 +1581,113 @@ CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filame
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdarg.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stddef.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdint.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/AssetManager.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/FilamentViewer.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/Log.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/PolyvoxFilamentApi.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/ResourceBuffer.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/SceneAsset.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/StreamBufferAdapter.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/TimeIt.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/BufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/CallbackHandler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/DriverEnums.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/Handle.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/PixelBufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/Platform.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/PresentCallable.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/TargetBufferInfo.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/camutils/Bookmark.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/camutils/Manipulator.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/camutils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Box.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Camera.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Color.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/ColorGrading.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Engine.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/FilamentAPI.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/IndexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/IndirectLight.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/LightManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Material.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/MaterialEnums.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/MaterialInstance.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/MorphTargetBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Options.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/RenderTarget.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/RenderableManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Renderer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Scene.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Skybox.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Texture.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/TextureSampler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/ToneMapper.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/TransformManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/VertexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/View.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Viewport.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/Animator.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/AssetLoader.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/FilamentAsset.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/FilamentInstance.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/MaterialProvider.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/NodeManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/ResourceLoader.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/TextureProvider.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/materials/uberarchive.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/image/Ktx1Bundle.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/image/LinearImage.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/imageio/ImageDecoder.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/ktxreader/Ktx1Reader.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/ktxreader/Ktx2Reader.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/material/image.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/TMatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/TQuatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/TVecHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/half.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/mat3.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/mat4.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/mathfwd.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/norm.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/quat.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/scalar.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/vec2.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/vec3.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/vec4.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/tsl/robin_growth_policy.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/tsl/robin_hash.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/tsl/robin_map.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Allocator.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/BitmaskEnum.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/CString.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/CallStack.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Entity.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/EntityInstance.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/EntityManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/FixedCapacityVector.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Invocable.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Log.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/NameComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Panic.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/PrivateImplementation.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/SingleInstanceComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Slice.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/SpinLock.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/StructureOfArrays.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/algorithm.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/bitset.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/compressed_pair.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/debug.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/generic/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/memalign.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/ostream.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/unwindows.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/AssetManager.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/FilamentViewer.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/Log.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/FlutterFilamentApi.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/ResourceBuffer.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/SceneAsset.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/StreamBufferAdapter.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/TimeIt.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/BufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/CallbackHandler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/DriverEnums.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/Handle.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/PixelBufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/Platform.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/PresentCallable.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/TargetBufferInfo.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/camutils/Bookmark.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/camutils/Manipulator.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/camutils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Box.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Camera.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Color.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/ColorGrading.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Engine.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/FilamentAPI.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/IndexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/IndirectLight.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/LightManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Material.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/MaterialEnums.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/MaterialInstance.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/MorphTargetBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Options.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/RenderTarget.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/RenderableManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Renderer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Scene.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Skybox.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Texture.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/TextureSampler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/ToneMapper.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/TransformManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/VertexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/View.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Viewport.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/Animator.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/AssetLoader.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/FilamentAsset.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/FilamentInstance.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/MaterialProvider.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/NodeManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/ResourceLoader.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/TextureProvider.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/materials/uberarchive.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/image/Ktx1Bundle.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/image/LinearImage.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/imageio/ImageDecoder.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/ktxreader/Ktx1Reader.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/ktxreader/Ktx2Reader.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/material/image.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/TMatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/TQuatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/TVecHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/half.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/mat3.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/mat4.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/mathfwd.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/norm.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/quat.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/scalar.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/vec2.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/vec3.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/vec4.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/tsl/robin_growth_policy.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/tsl/robin_hash.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/tsl/robin_map.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Allocator.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/BitmaskEnum.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/CString.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/CallStack.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Entity.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/EntityInstance.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/EntityManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/FixedCapacityVector.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Invocable.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Log.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/NameComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Panic.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/PrivateImplementation.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/SingleInstanceComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Slice.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/SpinLock.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/StructureOfArrays.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/algorithm.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/bitset.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/compressed_pair.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/debug.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/generic/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/memalign.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/ostream.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/unwindows.h
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/PolyvoxFilamentApi.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/FlutterFilamentApi.cpp
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Availability.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityInternal.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityVersions.h
|
||||
@@ -2442,99 +2442,99 @@ CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filame
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdarg.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stddef.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdint.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/AssetManager.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/FilamentViewer.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/Log.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/PolyvoxFilamentApi.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/ResourceBuffer.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/SceneAsset.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/ThreadPool.hpp
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/BufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/CallbackHandler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/DriverEnums.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/PixelBufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/Platform.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/backend/PresentCallable.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/camutils/Bookmark.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/camutils/Manipulator.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/camutils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Box.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Camera.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Color.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/ColorGrading.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Engine.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/FilamentAPI.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/IndexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/LightManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Material.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/MaterialEnums.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/MaterialInstance.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/MorphTargetBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Options.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/RenderableManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Renderer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Scene.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Skybox.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/Texture.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/TextureSampler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/ToneMapper.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/TransformManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/VertexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/filament/View.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/Animator.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/AssetLoader.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/FilamentAsset.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/FilamentInstance.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/MaterialProvider.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/NodeManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/gltfio/ResourceLoader.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/TMatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/TQuatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/TVecHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/half.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/mat3.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/mat4.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/mathfwd.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/norm.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/quat.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/scalar.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/vec2.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/vec3.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/math/vec4.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/tsl/robin_growth_policy.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/tsl/robin_hash.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/tsl/robin_map.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Allocator.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/BitmaskEnum.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/CString.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/CallStack.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Entity.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/EntityInstance.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/EntityManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/FixedCapacityVector.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Invocable.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Log.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/NameComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Panic.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/PrivateImplementation.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/SingleInstanceComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/Slice.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/SpinLock.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/StructureOfArrays.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/algorithm.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/bitset.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/compressed_pair.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/debug.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/generic/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/memalign.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/ostream.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/utils/unwindows.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/AssetManager.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/FilamentViewer.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/Log.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/FlutterFilamentApi.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/ResourceBuffer.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/SceneAsset.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/ThreadPool.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/BufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/CallbackHandler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/DriverEnums.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/PixelBufferDescriptor.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/Platform.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/backend/PresentCallable.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/camutils/Bookmark.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/camutils/Manipulator.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/camutils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Box.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Camera.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Color.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/ColorGrading.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Engine.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/FilamentAPI.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/IndexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/LightManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Material.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/MaterialEnums.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/MaterialInstance.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/MorphTargetBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Options.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/RenderableManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Renderer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Scene.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Skybox.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/Texture.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/TextureSampler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/ToneMapper.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/TransformManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/VertexBuffer.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/filament/View.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/Animator.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/AssetLoader.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/FilamentAsset.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/FilamentInstance.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/MaterialProvider.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/NodeManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/gltfio/ResourceLoader.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/TMatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/TQuatHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/TVecHelpers.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/half.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/mat3.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/mat4.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/mathfwd.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/norm.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/quat.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/scalar.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/vec2.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/vec3.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/math/vec4.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/tsl/robin_growth_policy.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/tsl/robin_hash.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/tsl/robin_map.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Allocator.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/BitmaskEnum.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/CString.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/CallStack.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Entity.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/EntityInstance.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/EntityManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/FixedCapacityVector.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Invocable.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Log.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/NameComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Panic.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/PrivateImplementation.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/SingleInstanceComponentManager.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/Slice.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/SpinLock.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/StructureOfArrays.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/algorithm.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/bitset.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/compiler.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/compressed_pair.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/debug.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/generic/Mutex.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/memalign.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/ostream.h
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/utils/unwindows.h
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/StreamBufferAdapter.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/StreamBufferAdapter.cpp
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Availability.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityInternal.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityVersions.h
|
||||
@@ -3233,8 +3233,8 @@ CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filame
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stddef.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdint.h
|
||||
|
||||
CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/src/TimeIt.cpp
|
||||
CMakeFiles/flutter_filament_plugin.dir/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp.o
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/src/TimeIt.cpp
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/Availability.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityInternal.h
|
||||
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/usr/include/AvailabilityVersions.h
|
||||
@@ -3488,5 +3488,5 @@ CMakeFiles/polyvox_filament_plugin.dir/Volumes/T7/polyvox/flutter/polyvox_filame
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/limits.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stddef.h
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.3/include/stdint.h
|
||||
/Volumes/T7/polyvox/flutter/polyvox_filament/ios/include/TimeIt.hpp
|
||||
/Volumes/T7/polyvox/flutter/flutter_filament/ios/include/TimeIt.hpp
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user