Build Information
Failed to build Creamy3D, reference main (a6be09
), with Swift 6.2 (beta) for macOS (SPM) on 21 Jun 2025 09:29:04 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/alex566/Creamy3D.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/alex566/Creamy3D
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at a6be096 Update swift.yml
Cloned https://github.com/alex566/Creamy3D.git
Revision (git rev-parse @):
a6be096cb332fd6cae8a38e028e6541b2689604c
SUCCESS checkout https://github.com/alex566/Creamy3D.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/alex566/Creamy3D.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/8] Copying fresnel_material.metal
[0/8] Write sources
[1/8] Copying common.metal
[2/8] Copying texture_material.metal
[3/8] Copying matcap_material.metal
[3/8] Copying material_common.h
[4/8] Copying color_material.metal
[7/8] Write swift-version-1EA4D86E10B52AF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[9/35] Emitting module Creamy3D
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:8: error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
12 | let projection: Projection
13 | let camera: Camera
:
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: initializer for property '_renderer' is main actor-isolated
18 |
19 | func makeUIView(context: Context) -> MTKView {
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:19:30: error: cannot find type 'Context' in scope
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- error: cannot find type 'Context' in scope
20 | let view = MTKView()
21 | renderer.setup(view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:27:51: error: cannot find type 'Context' in scope
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- error: cannot find type 'Context' in scope
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:19: error: cannot find type 'UIViewRepresentable' in scope
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: cannot find type 'UIViewRepresentable' in scope
12 | let projection: Projection
13 | let camera: Camera
[10/37] Compiling Creamy3D Projection.swift
[11/37] Compiling Creamy3D resource_bundle_accessor.swift
[12/37] Compiling Creamy3D Material+Blend.swift
[13/37] Compiling Creamy3D Material.swift
[14/37] Compiling Creamy3D TextureMaterial.swift
[15/37] Compiling Creamy3D CubeMeshLoader.swift
[16/37] Compiling Creamy3D MeshLoader.swift
[17/37] Compiling Creamy3D ModelMeshLoader.swift
[18/37] Compiling Creamy3D ColorMaterialFunction.swift
[19/37] Compiling Creamy3D FresnelMaterialFunction.swift
[20/37] Compiling Creamy3D MatcapMaterialFunction.swift
[21/37] Compiling Creamy3D MaterialFunction.swift
[22/37] Compiling Creamy3D TextureMaterialFunction.swift
[23/37] Compiling Creamy3D MaterialState.swift
[24/37] Compiling Creamy3D SphereMeshLoader.swift
[25/37] Compiling Creamy3D MeshNode.swift
[26/37] Compiling Creamy3D ColorMaterial.swift
[27/37] Compiling Creamy3D FresnelMaterial.swift
[28/37] Compiling Creamy3D MatcapMaterial.swift
[29/37] Compiling Creamy3D MetalView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:8: error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
12 | let projection: Projection
13 | let camera: Camera
:
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: initializer for property '_renderer' is main actor-isolated
18 |
19 | func makeUIView(context: Context) -> MTKView {
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:19:30: error: cannot find type 'Context' in scope
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- error: cannot find type 'Context' in scope
20 | let view = MTKView()
21 | renderer.setup(view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:27:51: error: cannot find type 'Context' in scope
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- error: cannot find type 'Context' in scope
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:19: error: cannot find type 'UIViewRepresentable' in scope
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: cannot find type 'UIViewRepresentable' in scope
12 | let projection: Projection
13 | let camera: Camera
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:20:20: error: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
| `- error: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context [#ActorIsolatedCall]
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h:23:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
21 | @interface NSResponder : NSObject <NSCoding>
22 |
23 | - (instancetype)init NS_DESIGNATED_INITIALIZER;
| `- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
24 | - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
25 |
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:21:18: error: call to main actor-isolated instance method 'setup(view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
| `- error: call to main actor-isolated instance method 'setup(view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:72:10: note: calls to instance method 'setup(view:)' from outside of its actor context are implicitly asynchronous
70 | }
71 |
72 | func setup(view: MTKView) {
| `- note: calls to instance method 'setup(view:)' from outside of its actor context are implicitly asynchronous
73 | view.delegate = self
74 | view.device = device
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:21:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:22:18: error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
| `- error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
23 | renderer.update(objects: objects, projection: projection, view: view)
24 | return view
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:84:10: note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
82 | }
83 |
84 | func update(camera: Camera, projection: Projection) {
| `- note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
85 | self.viewMatrix = camera.makeMatrix()
86 | self.projectionMatrix = projection.makeMatrix()
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:22:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
23 | renderer.update(objects: objects, projection: projection, view: view)
24 | return view
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:23:18: error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
| `- error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
24 | return view
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:89:10: note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
87 | }
88 |
89 | func update(objects: [any Object], projection: Projection, view: MTKView) {
| `- note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
90 | let meshes = objects.compactMap { $0 as? Mesh }
91 | // Remove meshes that are not in the list anymore
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:23:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
24 | return view
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:28:18: error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
| `- error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
29 | renderer.update(objects: objects, projection: projection, view: uiView)
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:84:10: note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
82 | }
83 |
84 | func update(camera: Camera, projection: Projection) {
| `- note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
85 | self.viewMatrix = camera.makeMatrix()
86 | self.projectionMatrix = projection.makeMatrix()
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:28:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
:
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
29 | renderer.update(objects: objects, projection: projection, view: uiView)
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:29:18: error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
| `- error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:89:10: note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
87 | }
88 |
89 | func update(objects: [any Object], projection: Projection, view: MTKView) {
| `- note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
90 | let meshes = objects.compactMap { $0 as? Mesh }
91 | // Remove meshes that are not in the list anymore
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:29:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
:
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
30 | }
31 | }
[#ActorIsolatedCall]: <https://docs.swift.org/compiler/documentation/diagnostics/actor-isolated-call>
[30/37] Compiling Creamy3D EmptyObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:8: error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
12 | let projection: Projection
13 | let camera: Camera
:
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: initializer for property '_renderer' is main actor-isolated
18 |
19 | func makeUIView(context: Context) -> MTKView {
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:19:30: error: cannot find type 'Context' in scope
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- error: cannot find type 'Context' in scope
20 | let view = MTKView()
21 | renderer.setup(view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:27:51: error: cannot find type 'Context' in scope
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- error: cannot find type 'Context' in scope
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:19: error: cannot find type 'UIViewRepresentable' in scope
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: cannot find type 'UIViewRepresentable' in scope
12 | let projection: Projection
13 | let camera: Camera
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:20:20: error: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
| `- error: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context [#ActorIsolatedCall]
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h:23:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
21 | @interface NSResponder : NSObject <NSCoding>
22 |
23 | - (instancetype)init NS_DESIGNATED_INITIALIZER;
| `- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
24 | - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
25 |
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:21:18: error: call to main actor-isolated instance method 'setup(view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
| `- error: call to main actor-isolated instance method 'setup(view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:72:10: note: calls to instance method 'setup(view:)' from outside of its actor context are implicitly asynchronous
70 | }
71 |
72 | func setup(view: MTKView) {
| `- note: calls to instance method 'setup(view:)' from outside of its actor context are implicitly asynchronous
73 | view.delegate = self
74 | view.device = device
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:21:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:22:18: error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
| `- error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
23 | renderer.update(objects: objects, projection: projection, view: view)
24 | return view
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:84:10: note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
82 | }
83 |
84 | func update(camera: Camera, projection: Projection) {
| `- note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
85 | self.viewMatrix = camera.makeMatrix()
86 | self.projectionMatrix = projection.makeMatrix()
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:22:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
23 | renderer.update(objects: objects, projection: projection, view: view)
24 | return view
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:23:18: error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
| `- error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
24 | return view
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:89:10: note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
87 | }
88 |
89 | func update(objects: [any Object], projection: Projection, view: MTKView) {
| `- note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
90 | let meshes = objects.compactMap { $0 as? Mesh }
91 | // Remove meshes that are not in the list anymore
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:23:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
24 | return view
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:28:18: error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
| `- error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
29 | renderer.update(objects: objects, projection: projection, view: uiView)
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:84:10: note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
82 | }
83 |
84 | func update(camera: Camera, projection: Projection) {
| `- note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
85 | self.viewMatrix = camera.makeMatrix()
86 | self.projectionMatrix = projection.makeMatrix()
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:28:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
:
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
29 | renderer.update(objects: objects, projection: projection, view: uiView)
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:29:18: error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
| `- error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:89:10: note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
87 | }
88 |
89 | func update(objects: [any Object], projection: Projection, view: MTKView) {
| `- note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
90 | let meshes = objects.compactMap { $0 as? Mesh }
91 | // Remove meshes that are not in the list anymore
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:29:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
:
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
30 | }
31 | }
[#ActorIsolatedCall]: <https://docs.swift.org/compiler/documentation/diagnostics/actor-isolated-call>
[31/37] Compiling Creamy3D Mesh.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:8: error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
12 | let projection: Projection
13 | let camera: Camera
:
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: initializer for property '_renderer' is main actor-isolated
18 |
19 | func makeUIView(context: Context) -> MTKView {
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:19:30: error: cannot find type 'Context' in scope
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- error: cannot find type 'Context' in scope
20 | let view = MTKView()
21 | renderer.setup(view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:27:51: error: cannot find type 'Context' in scope
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- error: cannot find type 'Context' in scope
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:19: error: cannot find type 'UIViewRepresentable' in scope
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: cannot find type 'UIViewRepresentable' in scope
12 | let projection: Projection
13 | let camera: Camera
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:20:20: error: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
| `- error: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context [#ActorIsolatedCall]
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSResponder.h:23:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
21 | @interface NSResponder : NSObject <NSCoding>
22 |
23 | - (instancetype)init NS_DESIGNATED_INITIALIZER;
| `- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
24 | - (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
25 |
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:21:18: error: call to main actor-isolated instance method 'setup(view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
| `- error: call to main actor-isolated instance method 'setup(view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:72:10: note: calls to instance method 'setup(view:)' from outside of its actor context are implicitly asynchronous
70 | }
71 |
72 | func setup(view: MTKView) {
| `- note: calls to instance method 'setup(view:)' from outside of its actor context are implicitly asynchronous
73 | view.delegate = self
74 | view.device = device
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:21:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:22:18: error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
| `- error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
23 | renderer.update(objects: objects, projection: projection, view: view)
24 | return view
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:84:10: note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
82 | }
83 |
84 | func update(camera: Camera, projection: Projection) {
| `- note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
85 | self.viewMatrix = camera.makeMatrix()
86 | self.projectionMatrix = projection.makeMatrix()
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:22:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
23 | renderer.update(objects: objects, projection: projection, view: view)
24 | return view
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:23:18: error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
17 | var renderer = Renderer()
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
| `- error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
24 | return view
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:89:10: note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
87 | }
88 |
89 | func update(objects: [any Object], projection: Projection, view: MTKView) {
| `- note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
90 | let meshes = objects.compactMap { $0 as? Mesh }
91 | // Remove meshes that are not in the list anymore
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:23:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
| `- note: add '@MainActor' to make instance method 'makeUIView(context:)' part of global actor 'MainActor'
20 | let view = MTKView()
21 | renderer.setup(view: view)
22 | renderer.update(camera: camera, projection: projection)
23 | renderer.update(objects: objects, projection: projection, view: view)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
24 | return view
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:28:18: error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
| `- error: call to main actor-isolated instance method 'update(camera:projection:)' in a synchronous nonisolated context [#ActorIsolatedCall]
29 | renderer.update(objects: objects, projection: projection, view: uiView)
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:84:10: note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
82 | }
83 |
84 | func update(camera: Camera, projection: Projection) {
| `- note: calls to instance method 'update(camera:projection:)' from outside of its actor context are implicitly asynchronous
85 | self.viewMatrix = camera.makeMatrix()
86 | self.projectionMatrix = projection.makeMatrix()
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:28:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
:
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
29 | renderer.update(objects: objects, projection: projection, view: uiView)
30 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:29:18: error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
| `- error: call to main actor-isolated instance method 'update(objects:projection:view:)' in a synchronous nonisolated context [#ActorIsolatedCall]
30 | }
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:89:10: note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
87 | }
88 |
89 | func update(objects: [any Object], projection: Projection, view: MTKView) {
| `- note: calls to instance method 'update(objects:projection:view:)' from outside of its actor context are implicitly asynchronous
90 | let meshes = objects.compactMap { $0 as? Mesh }
91 | // Remove meshes that are not in the list anymore
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:29:9: error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: property declared here
18 |
19 | func makeUIView(context: Context) -> MTKView {
:
25 | }
26 |
27 | func updateUIView(_ uiView: MTKView, context: Context) {
| `- note: add '@MainActor' to make instance method 'updateUIView(_:context:)' part of global actor 'MainActor'
28 | renderer.update(camera: camera, projection: projection)
29 | renderer.update(objects: objects, projection: projection, view: uiView)
| `- error: main actor-isolated property 'renderer' can not be referenced from a nonisolated context
30 | }
31 | }
[#ActorIsolatedCall]: <https://docs.swift.org/compiler/documentation/diagnostics/actor-isolated-call>
[32/37] Compiling Creamy3D ColorRGB.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:8: error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
12 | let projection: Projection
13 | let camera: Camera
:
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: initializer for property '_renderer' is main actor-isolated
18 |
19 | func makeUIView(context: Context) -> MTKView {
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/CreamyView.swift:38:13: error: static method 'buildExpression' requires that 'MetalView' conform to 'View'
36 | public var body: some View {
37 | GeometryReader { proxy in
38 | MetalView(
| `- error: static method 'buildExpression' requires that 'MetalView' conform to 'View'
39 | projection: .init(width: proxy.size.width,
40 | height: proxy.size.height,
SwiftUI.ViewBuilder.buildExpression:2:20: note: where 'Content' = 'MetalView'
1 | struct ViewBuilder {
2 | public static func buildExpression<Content>(_ content: Content) -> Content where Content : View}
| `- note: where 'Content' = 'MetalView'
3 |
[33/37] Compiling Creamy3D CreamyView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:8: error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
12 | let projection: Projection
13 | let camera: Camera
:
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: initializer for property '_renderer' is main actor-isolated
18 |
19 | func makeUIView(context: Context) -> MTKView {
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/CreamyView.swift:38:13: error: static method 'buildExpression' requires that 'MetalView' conform to 'View'
36 | public var body: some View {
37 | GeometryReader { proxy in
38 | MetalView(
| `- error: static method 'buildExpression' requires that 'MetalView' conform to 'View'
39 | projection: .init(width: proxy.size.width,
40 | height: proxy.size.height,
SwiftUI.ViewBuilder.buildExpression:2:20: note: where 'Content' = 'MetalView'
1 | struct ViewBuilder {
2 | public static func buildExpression<Content>(_ content: Content) -> Content where Content : View}
| `- note: where 'Content' = 'MetalView'
3 |
[34/37] Compiling Creamy3D Logger.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/MetalView.swift:11:8: error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
9 | import SwiftUI
10 |
11 | struct MetalView: UIViewRepresentable {
| `- error: memberwise initializer for 'MetalView' cannot be both nonisolated and main actor-isolated
12 | let projection: Projection
13 | let camera: Camera
:
15 |
16 | @StateObject
17 | var renderer = Renderer()
| `- note: initializer for property '_renderer' is main actor-isolated
18 |
19 | func makeUIView(context: Context) -> MTKView {
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/CreamyView.swift:38:13: error: static method 'buildExpression' requires that 'MetalView' conform to 'View'
36 | public var body: some View {
37 | GeometryReader { proxy in
38 | MetalView(
| `- error: static method 'buildExpression' requires that 'MetalView' conform to 'View'
39 | projection: .init(width: proxy.size.width,
40 | height: proxy.size.height,
SwiftUI.ViewBuilder.buildExpression:2:20: note: where 'Content' = 'MetalView'
1 | struct ViewBuilder {
2 | public static func buildExpression<Content>(_ content: Content) -> Content where Content : View}
| `- note: where 'Content' = 'MetalView'
3 |
[35/37] Compiling Creamy3D Object.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:80:14: error: value of type 'MTKView' has no member 'backgroundColor'
78 | view.clearColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
79 | view.depthStencilPixelFormat = config.depthPixelFormat
80 | view.backgroundColor = .clear
| `- error: value of type 'MTKView' has no member 'backgroundColor'
81 | view.sampleCount = config.sampleCount
82 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:80:33: error: cannot infer contextual base in reference to member 'clear'
78 | view.clearColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
79 | view.depthStencilPixelFormat = config.depthPixelFormat
80 | view.backgroundColor = .clear
| `- error: cannot infer contextual base in reference to member 'clear'
81 | view.sampleCount = config.sampleCount
82 | }
[36/37] Compiling Creamy3D Renderer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:80:14: error: value of type 'MTKView' has no member 'backgroundColor'
78 | view.clearColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
79 | view.depthStencilPixelFormat = config.depthPixelFormat
80 | view.backgroundColor = .clear
| `- error: value of type 'MTKView' has no member 'backgroundColor'
81 | view.sampleCount = config.sampleCount
82 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:80:33: error: cannot infer contextual base in reference to member 'clear'
78 | view.clearColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
79 | view.depthStencilPixelFormat = config.depthPixelFormat
80 | view.backgroundColor = .clear
| `- error: cannot infer contextual base in reference to member 'clear'
81 | view.sampleCount = config.sampleCount
82 | }
[37/37] Compiling Creamy3D Camera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:80:14: error: value of type 'MTKView' has no member 'backgroundColor'
78 | view.clearColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
79 | view.depthStencilPixelFormat = config.depthPixelFormat
80 | view.backgroundColor = .clear
| `- error: value of type 'MTKView' has no member 'backgroundColor'
81 | view.sampleCount = config.sampleCount
82 | }
/Users/admin/builder/spi-builder-workspace/Sources/Creamy3D/Renderer.swift:80:33: error: cannot infer contextual base in reference to member 'clear'
78 | view.clearColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
79 | view.depthStencilPixelFormat = config.depthPixelFormat
80 | view.backgroundColor = .clear
| `- error: cannot infer contextual base in reference to member 'clear'
81 | view.sampleCount = config.sampleCount
82 | }
BUILD FAILURE 6.2 macosSpm