Build Information
Failed to build Doggie, reference 6.7.1 (421a7a
), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 17:53:23 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | private static func make_pipeline(_ device: MTLDevice) -> Pipeline? {
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:89:79: error: type 'Bundle' has no member 'module'
87 | } else {
88 |
89 | guard let library = try? device.makeDefaultLibrary(bundle: Bundle.module) else { return nil }
| `- error: type 'Bundle' has no member 'module'
90 | guard let _pipeline = Pipeline(device: device, library: library) else { return nil }
91 |
[995/1017] Compiling DoggieGPU MTLDevice.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: warning: static property 'pipeline' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private static let lck = NSLock()
76 | private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
| |- warning: static property 'pipeline' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pipeline' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'pipeline' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | private static func make_pipeline(_ device: MTLDevice) -> Pipeline? {
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:89:79: error: type 'Bundle' has no member 'module'
87 | } else {
88 |
89 | guard let library = try? device.makeDefaultLibrary(bundle: Bundle.module) else { return nil }
| `- error: type 'Bundle' has no member 'module'
90 | guard let _pipeline = Pipeline(device: device, library: library) else { return nil }
91 |
[996/1017] Compiling DoggieGPU GPContextExtension.swift
[997/1017] Compiling DoggieGPU GPContextPattern.swift
[998/1017] Compiling DoggieGPU GPContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift:105:24: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'CIImage' may have shared mutable state; this is an error in the Swift 6 language mode
103 | extension GPContext {
104 |
105 | private static let black: CIImage = {
| |- warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'CIImage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | if #available(macOS 10.15, iOS 13.0, tvOS 13.0, *) { return CIImage.black }
107 | return CIImage(color: CIColor.black)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
32 |
33 | NS_CLASS_AVAILABLE(10_4, 5_0)
34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
| `- note: class 'CIImage' does not conform to the 'Sendable' protocol
35 | {
36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[999/1017] Compiling DoggieGPU GPContextBase.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift:105:24: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'CIImage' may have shared mutable state; this is an error in the Swift 6 language mode
103 | extension GPContext {
104 |
105 | private static let black: CIImage = {
| |- warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'CIImage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | if #available(macOS 10.15, iOS 13.0, tvOS 13.0, *) { return CIImage.black }
107 | return CIImage(color: CIColor.black)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
32 |
33 | NS_CLASS_AVAILABLE(10_4, 5_0)
34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
| `- note: class 'CIImage' does not conform to the 'Sendable' protocol
35 | {
36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
[1000/1017] Emitting module DoggieGPU
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
38 | }
39 |
40 | static let function_constants: [String: MTLFunctionConstantValues] = {
| |- warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 | var function_constants: [String: MTLFunctionConstantValues] = [:]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
14 |
15 | MTL_EXPORT API_AVAILABLE(macos(10.12), ios(10.0))
16 | @interface MTLFunctionConstantValues : NSObject <NSCopying>
| `- note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
17 |
18 | // using indices
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | private static let lck = NSLock()
33 | private static var function_constants: [String: MTLFunctionConstantValues] = [:]
| |- warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | static func make_function_constant(_ orderX: Int, _ orderY: Int) -> MTLFunctionConstantValues {
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
30 | private class SVGDisplacementMapKernel: CIImageProcessorKernel {
31 |
32 | static let function_constants: [String: MTLFunctionConstantValues] = {
| |- warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | var function_constants: [String: MTLFunctionConstantValues] = [:]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
14 |
15 | MTL_EXPORT API_AVAILABLE(macos(10.12), ios(10.0))
16 | @interface MTLFunctionConstantValues : NSObject <NSCopying>
| `- note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
17 |
18 | // using indices
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private static let lck = NSLock()
76 | private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
| |- warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | static func make_function_constant(_ type: SVGTurbulenceType, _ isStitchTile: Bool, _ numOctaves: Int) -> MTLFunctionConstantValues {
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
97 |
98 | static let cache_lck = NSLock()
99 | static var cache: [SVGNoiseGeneratorBuffer] = []
| |- warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 | static func svg_noise_generator(_ seed: Int, _ device: MTLDevice) -> (MTLBuffer, MTLBuffer)? {
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:31:24: warning: static property 'libraries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | private static let lck = NSLock()
31 | private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
| |- warning: static property 'libraries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'libraries' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'libraries' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
33 |
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:32:24: warning: static property 'pipelines' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 | private static let lck = NSLock()
31 | private static var libraries: WeakDictionary<MTLDevice, MTLLibrary> = WeakDictionary()
32 | private static var pipelines: WeakDictionary<MTLDevice, [String: [MTLFunctionConstantValues?: MTLComputePipelineState]]> = WeakDictionary()
| |- warning: static property 'pipelines' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pipelines' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'pipelines' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | static func make_pipeline(_ device: MTLDevice, _ name: String, _ constantValues: MTLFunctionConstantValues? = nil) -> MTLComputePipelineState? {
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/GPContext.swift:105:24: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'CIImage' may have shared mutable state; this is an error in the Swift 6 language mode
103 | extension GPContext {
104 |
105 | private static let black: CIImage = {
| |- warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'CIImage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | if #available(macOS 10.15, iOS 13.0, tvOS 13.0, *) { return CIImage.black }
107 | return CIImage(color: CIColor.black)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/CoreImage.framework/Headers/CIImage.h:34:12: note: class 'CIImage' does not conform to the 'Sendable' protocol
32 |
33 | NS_CLASS_AVAILABLE(10_4, 5_0)
34 | @interface CIImage : NSObject <NSSecureCoding, NSCopying>
| `- note: class 'CIImage' does not conform to the 'Sendable' protocol
35 | {
36 | #if TARGET_OS_OSX || TARGET_OS_MACCATALYST
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:76:24: warning: static property 'pipeline' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private static let lck = NSLock()
76 | private static var pipeline: WeakDictionary<MTLDevice, Pipeline> = WeakDictionary()
| |- warning: static property 'pipeline' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'pipeline' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'pipeline' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | private static func make_pipeline(_ device: MTLDevice) -> Pipeline? {
[1001/1017] Compiling DoggieGPU Packed.swift
[1002/1017] Compiling DoggieGPU SIMD.swift
[1003/1017] Compiling DoggieGPU PalettizeKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
38 | }
39 |
40 | static let function_constants: [String: MTLFunctionConstantValues] = {
| |- warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 | var function_constants: [String: MTLFunctionConstantValues] = [:]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
14 |
15 | MTL_EXPORT API_AVAILABLE(macos(10.12), ios(10.0))
16 | @interface MTLFunctionConstantValues : NSObject <NSCopying>
| `- note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
17 |
18 | // using indices
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | private static let lck = NSLock()
33 | private static var function_constants: [String: MTLFunctionConstantValues] = [:]
| |- warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | static func make_function_constant(_ orderX: Int, _ orderY: Int) -> MTLFunctionConstantValues {
[1004/1017] Compiling DoggieGPU SVGComponentTransferKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
38 | }
39 |
40 | static let function_constants: [String: MTLFunctionConstantValues] = {
| |- warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 | var function_constants: [String: MTLFunctionConstantValues] = [:]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
14 |
15 | MTL_EXPORT API_AVAILABLE(macos(10.12), ios(10.0))
16 | @interface MTLFunctionConstantValues : NSObject <NSCopying>
| `- note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
17 |
18 | // using indices
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | private static let lck = NSLock()
33 | private static var function_constants: [String: MTLFunctionConstantValues] = [:]
| |- warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | static func make_function_constant(_ orderX: Int, _ orderY: Int) -> MTLFunctionConstantValues {
[1005/1017] Compiling DoggieGPU SVGConvolveKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGComponentTransferKernel.swift:40:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
38 | }
39 |
40 | static let function_constants: [String: MTLFunctionConstantValues] = {
| |- warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 | var function_constants: [String: MTLFunctionConstantValues] = [:]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
14 |
15 | MTL_EXPORT API_AVAILABLE(macos(10.12), ios(10.0))
16 | @interface MTLFunctionConstantValues : NSObject <NSCopying>
| `- note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
17 |
18 | // using indices
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGConvolveKernel.swift:33:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 |
32 | private static let lck = NSLock()
33 | private static var function_constants: [String: MTLFunctionConstantValues] = [:]
| |- warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | static func make_function_constant(_ orderX: Int, _ orderY: Int) -> MTLFunctionConstantValues {
[1006/1017] Compiling DoggieGPU ConvolveKernel.swift
[1007/1017] Compiling DoggieGPU CoreImage.swift
[1008/1017] Compiling DoggieGPU MorphologyKernel.swift
[1009/1017] Compiling DoggieGPU Exported.swift
[1010/1017] Compiling DoggieGPU CGContextProcessorKernel.swift
[1011/1017] Compiling DoggieGPU CGPathProcessorKernel.swift
[1012/1017] Compiling DoggieGPU SVGDisplacementMapKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
30 | private class SVGDisplacementMapKernel: CIImageProcessorKernel {
31 |
32 | static let function_constants: [String: MTLFunctionConstantValues] = {
| |- warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | var function_constants: [String: MTLFunctionConstantValues] = [:]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
14 |
15 | MTL_EXPORT API_AVAILABLE(macos(10.12), ios(10.0))
16 | @interface MTLFunctionConstantValues : NSObject <NSCopying>
| `- note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
17 |
18 | // using indices
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private static let lck = NSLock()
76 | private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
| |- warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | static func make_function_constant(_ type: SVGTurbulenceType, _ isStitchTile: Bool, _ numOctaves: Int) -> MTLFunctionConstantValues {
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
97 |
98 | static let cache_lck = NSLock()
99 | static var cache: [SVGNoiseGeneratorBuffer] = []
| |- warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 | static func svg_noise_generator(_ seed: Int, _ device: MTLDevice) -> (MTLBuffer, MTLBuffer)? {
[1013/1017] Compiling DoggieGPU SVGLightingKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
30 | private class SVGDisplacementMapKernel: CIImageProcessorKernel {
31 |
32 | static let function_constants: [String: MTLFunctionConstantValues] = {
| |- warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | var function_constants: [String: MTLFunctionConstantValues] = [:]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
14 |
15 | MTL_EXPORT API_AVAILABLE(macos(10.12), ios(10.0))
16 | @interface MTLFunctionConstantValues : NSObject <NSCopying>
| `- note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
17 |
18 | // using indices
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private static let lck = NSLock()
76 | private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
| |- warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | static func make_function_constant(_ type: SVGTurbulenceType, _ isStitchTile: Bool, _ numOctaves: Int) -> MTLFunctionConstantValues {
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
97 |
98 | static let cache_lck = NSLock()
99 | static var cache: [SVGNoiseGeneratorBuffer] = []
| |- warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 | static func svg_noise_generator(_ seed: Int, _ device: MTLDevice) -> (MTLBuffer, MTLBuffer)? {
[1014/1017] Compiling DoggieGPU SVGTurbulenceKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGDisplacementMapKernel.swift:32:20: warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
30 | private class SVGDisplacementMapKernel: CIImageProcessorKernel {
31 |
32 | static let function_constants: [String: MTLFunctionConstantValues] = {
| |- warning: static property 'function_constants' is not concurrency-safe because non-'Sendable' type '[String : MTLFunctionConstantValues]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | var function_constants: [String: MTLFunctionConstantValues] = [:]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Metal.framework/Headers/MTLFunctionConstantValues.h:16:12: note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
14 |
15 | MTL_EXPORT API_AVAILABLE(macos(10.12), ios(10.0))
16 | @interface MTLFunctionConstantValues : NSObject <NSCopying>
| `- note: class 'MTLFunctionConstantValues' does not conform to the 'Sendable' protocol
17 |
18 | // using indices
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:76:28: warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
74 |
75 | private static let lck = NSLock()
76 | private static var function_constants: [SVGTurbulenceType: [Bool: [Int: MTLFunctionConstantValues]]] = [:]
| |- warning: static property 'function_constants' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'function_constants' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'function_constants' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 |
78 | static func make_function_constant(_ type: SVGTurbulenceType, _ isStitchTile: Bool, _ numOctaves: Int) -> MTLFunctionConstantValues {
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/SVGTurbulenceKernel.swift:99:20: warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
97 |
98 | static let cache_lck = NSLock()
99 | static var cache: [SVGNoiseGeneratorBuffer] = []
| |- warning: static property 'cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'cache' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'cache' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 | static func svg_noise_generator(_ seed: Int, _ device: MTLDevice) -> (MTLBuffer, MTLBuffer)? {
[1015/1017] Compiling DoggieGPU BilateralFilter.swift
[1016/1017] Compiling DoggieGPU CIImage.swift
[1017/1017] Compiling DoggieGPU CIVector.swift
warning: 'spi-builder-workspace': found 10 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGLightingKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/PalettizeKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGComponentTransferKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGConvolveKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGTurbulenceKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/kMeansClusteringKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/BilateralFilter.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGDisplacementMapKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/WrapTileKernel.metal
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/29] Compiling InternalCollectionsUtilities _SortedCollection.swift
[3/29] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[4/29] Compiling InternalCollectionsUtilities Debugging.swift
[5/29] Compiling InternalCollectionsUtilities Descriptions.swift
[6/29] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[7/29] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[8/29] Compiling InternalCollectionsUtilities Specialize.swift
[9/30] Compiling RealModule Real.swift
[10/30] Compiling RealModule Float80+Real.swift
[11/31] Compiling RealModule Float16+Real.swift
[12/31] Compiling RealModule AugmentedArithmetic.swift
[13/31] Compiling RealModule ElementaryFunctions.swift
[14/31] Compiling RealModule Float+Real.swift
[15/31] Compiling RealModule ApproximateEquality.swift
[16/31] Compiling RealModule RealFunctions.swift
[17/31] Compiling RealModule Double+Real.swift
[18/31] Compiling RealModule AlgebraicField.swift
[19/31] Emitting module RealModule
[20/31] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[21/31] Compiling InternalCollectionsUtilities UInt+reversed.swift
[22/31] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[23/31] Compiling InternalCollectionsUtilities Integer rank.swift
[24/31] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[25/31] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[26/31] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[27/31] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[28/31] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[29/31] Emitting module InternalCollectionsUtilities
[30/31] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[31/31] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[32/77] Compiling Algorithms Suffix.swift
[33/77] Compiling Algorithms Trim.swift
[34/86] Compiling DequeModule _DequeSlot.swift
[35/86] Compiling DequeModule _DequeBuffer.swift
[36/198] Compiling Float16 Concurrency.swift
[37/198] Compiling Float16 Real.swift
[38/276] Compiling DequeModule _DequeBufferHeader.swift
[39/346] Compiling DequeModule _UnsafeWrappedBuffer.swift
[40/346] Compiling _RopeModule Rope+_Storage.swift
[41/346] Compiling _RopeModule Rope+_UnmanagedLeaf.swift
[42/346] Compiling HeapModule Heap+UnsafeHandle.swift
[43/346] Compiling HeapModule Heap+Invariants.swift
[44/346] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[45/346] Compiling HeapModule _HeapNode.swift
[46/346] Compiling HeapModule Heap.swift
[47/346] Emitting module HeapModule
[48/346] Compiling HeapModule Heap+Descriptions.swift
[49/346] Compiling _RopeModule BigString+ReplaceSubrange.swift
[50/346] Compiling _RopeModule BigString+Split.swift
[51/346] Compiling _RopeModule Range+BigString.swift
[52/346] Compiling _RopeModule BigString+UTF16View.swift
[53/346] Compiling _RopeModule BigString+UTF8View.swift
[54/346] Compiling _RopeModule Rope+Append.swift
[55/352] Compiling _RopeModule BigString+RemoveSubrange.swift
[61/357] Compiling _RopeModule _RopeVersion.swift
[62/357] Compiling _RopeModule Rope+Collection.swift
[63/357] Compiling _RopeModule Rope+Index.swift
[64/357] Compiling _RopeModule Rope+Sequence.swift
[65/357] Compiling _RopeModule BigString+Insert.swift
[66/357] Compiling _RopeModule BigString+Managing Breaks.swift
[67/357] Compiling _RopeModule BigString+CustomStringConvertible.swift
[68/357] Compiling _RopeModule BigString+Equatable.swift
[69/357] Compiling _RopeModule RopeSummary.swift
[70/357] Compiling _RopeModule _RopeItem.swift
[71/357] Compiling _RopeModule _RopePath.swift
[73/357] Compiling _RopeModule BigString+Chunk+RopeElement.swift
[74/357] Compiling _RopeModule BigString+Chunk+Splitting.swift
[75/357] Compiling _RopeModule BigString+Chunk.swift
[76/357] Compiling _RopeModule BigString+BidirectionalCollection.swift
[77/357] Compiling _RopeModule BigString+Comparable.swift
[78/357] Compiling _RopeModule BigString+CustomDebugStringConvertible.swift
[85/357] Compiling _RopeModule BigString+TextOutputStream.swift
[86/357] Compiling _RopeModule BigString+Append.swift
[87/357] Compiling _RopeModule BigString+LosslessStringConvertible.swift
[88/357] Compiling _RopeModule BigString+RangeReplaceableCollection.swift
[89/357] Compiling _RopeModule BigString+Sequence.swift
[90/357] Emitting module Float16
[91/357] Compiling Float16 float16.swift
[92/357] Compiling _RopeModule BigString+Summary.swift
[93/357] Compiling _RopeModule BigString.swift
[94/357] Compiling _RopeModule BigString+Chunk+Append and Insert.swift
[95/357] Compiling _RopeModule BigString+Chunk+Breaks.swift
[96/357] Compiling _RopeModule BigString+Ingester.swift
[97/357] Compiling _RopeModule BigString+Invariants.swift
[98/357] Compiling _RopeModule BigString+Iterators.swift
[99/357] Compiling _RopeModule BigString+Metrics.swift
[100/357] Compiling _RopeModule Rope+_UnsafeHandle.swift
[101/357] Compiling _RopeModule Rope.swift
[102/357] Compiling _RopeModule RopeElement.swift
[103/357] Compiling _RopeModule RopeMetric.swift
[114/365] Compiling _RopeModule BigString+Chunk+Description.swift
[115/365] Compiling _RopeModule BigString+Chunk+Indexing by Characters.swift
[116/365] Compiling _RopeModule BigString+Chunk+Indexing by UTF16.swift
[117/365] Compiling _RopeModule BigString+ExpressibleByStringLiteral.swift
[118/365] Compiling _RopeModule BigString+Hashing.swift
[125/365] Compiling _RopeModule BigString+Chunk+Counts.swift
[130/365] Compiling _RopeModule BigString+Initializers.swift
[131/365] Compiling _RopeModule Rope+_Node.swift
[132/365] Compiling _RopeModule BigString+Builder.swift
[133/365] Compiling _RopeModule BigString+Contents.swift
[134/365] Compiling _RopeModule BigString+Debugging.swift
[135/365] Compiling _RopeModule BigString+Index.swift
[136/365] Compiling BitCollections BitSet.swift
[137/365] Compiling BitCollections Range+Utilities.swift
[138/365] Compiling BitCollections Slice+Utilities.swift
[139/365] Compiling BitCollections UInt+Tricks.swift
[140/365] Compiling BitCollections _Word.swift
[165/365] Emitting module DequeModule
[172/365] Emitting module BitCollections
[200/365] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[201/365] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[202/365] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[203/365] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[204/365] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[205/365] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[206/365] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[207/365] Compiling HashTreeCollections TreeSet.swift
[217/365] Compiling HashTreeCollections TreeSet+Equatable.swift
[218/365] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[219/365] Compiling HashTreeCollections TreeSet+Extras.swift
[220/365] Compiling HashTreeCollections TreeSet+Filter.swift
[221/365] Compiling HashTreeCollections TreeSet+Hashable.swift
[222/365] Compiling HashTreeCollections TreeSet+Sendable.swift
[223/365] Compiling HashTreeCollections TreeSet+Sequence.swift
[224/365] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[225/365] Compiling _RopeModule BigString+UnicodeScalarView.swift
[226/365] Compiling _RopeModule BigSubstring+UTF16View.swift
[227/365] Compiling _RopeModule BigSubstring+UTF8View.swift
[228/365] Compiling _RopeModule BigSubstring+UnicodeScalarView.swift
[229/365] Compiling _RopeModule BigSubstring.swift
[230/365] Compiling _RopeModule Rope+Builder.swift
[231/365] Compiling _RopeModule Rope+Debugging.swift
[232/365] Compiling _RopeModule Rope+Invariants.swift
[248/365] Compiling OrderedCollections OrderedSet.swift
[249/365] Compiling OrderedCollections _UnsafeBitset.swift
[314/372] Emitting module OrderedCollections
[315/372] Compiling _RopeModule Rope+Remove.swift
[316/372] Compiling _RopeModule Rope+RemoveSubrange.swift
[317/372] Compiling _RopeModule Rope+Split.swift
[318/372] Compiling _RopeModule Optional Utilities.swift
[319/372] Compiling _RopeModule String Utilities.swift
[320/372] Compiling _RopeModule String.Index+ABI.swift
[321/372] Compiling _RopeModule _CharacterRecognizer.swift
[322/372] Emitting module _RopeModule
[323/372] Emitting module Algorithms
[354/372] Emitting module HashTreeCollections
[373/374] Compiling Collections Collections.swift
[374/374] Emitting module Collections
[375/428] Compiling DoggieCore UnsafeSendable.swift
[376/428] Compiling DoggieCore Exported.swift
[377/428] Compiling DoggieCore Algorithm.swift
[378/428] Compiling DoggieCore Cache.swift
[379/428] Compiling DoggieCore ContiguousBuffer.swift
[380/428] Compiling DoggieCore Data.swift
[381/428] Compiling DoggieCore OptionOneCollection.swift
[382/428] Compiling DoggieCore Policy.swift
[383/428] Compiling DoggieCore RawBitPattern.swift
[384/428] Compiling DoggieCore String.swift
[385/428] Compiling DoggieCore replaceValue.swift
[386/433] Compiling DoggieCore AppleCompression.swift
[387/433] Compiling DoggieCore AppleExported.swift
[388/433] Compiling DoggieCore Metal.swift
[389/433] Compiling DoggieCore NSItemProvider.swift
[390/433] Compiling DoggieCore CompressionCodec.swift
[391/433] Compiling DoggieCore BrotliDecoder.swift
[392/433] Compiling DoggieCore Date.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 | @inlinable
269 | @inline(__always)
270 | public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
| `- note: 'S' previously declared here
271 |
272 | let old_count = base.count
:
285 |
286 | @inline(__always)
287 | func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
| `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 | let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
373 |
374 | @inline(__always)
375 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 | let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
400 |
401 | @inline(__always)
402 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 | let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
[393/433] Compiling DoggieCore FileManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 | @inlinable
269 | @inline(__always)
270 | public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
| `- note: 'S' previously declared here
271 |
272 | let old_count = base.count
:
285 |
286 | @inline(__always)
287 | func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
| `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 | let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
373 |
374 | @inline(__always)
375 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 | let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
400 |
401 | @inline(__always)
402 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 | let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
[394/433] Compiling DoggieCore Graph.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 | @inlinable
269 | @inline(__always)
270 | public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
| `- note: 'S' previously declared here
271 |
272 | let old_count = base.count
:
285 |
286 | @inline(__always)
287 | func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
| `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 | let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
373 |
374 | @inline(__always)
375 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 | let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
400 |
401 | @inline(__always)
402 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 | let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
[395/433] Compiling DoggieCore Locking.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 | @inlinable
269 | @inline(__always)
270 | public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
| `- note: 'S' previously declared here
271 |
272 | let old_count = base.count
:
285 |
286 | @inline(__always)
287 | func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
| `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 | let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
373 |
374 | @inline(__always)
375 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 | let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
400 |
401 | @inline(__always)
402 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 | let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
[396/433] Compiling DoggieCore MappedBuffer.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 | @inlinable
269 | @inline(__always)
270 | public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
| `- note: 'S' previously declared here
271 |
272 | let old_count = base.count
:
285 |
286 | @inline(__always)
287 | func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
| `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 | let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
373 |
374 | @inline(__always)
375 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 | let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
400 |
401 | @inline(__always)
402 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 | let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
[397/433] Compiling DoggieCore Parallel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 | @inlinable
269 | @inline(__always)
270 | public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
| `- note: 'S' previously declared here
271 |
272 | let old_count = base.count
:
285 |
286 | @inline(__always)
287 | func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
| `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 | let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
373 |
374 | @inline(__always)
375 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 | let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
400 |
401 | @inline(__always)
402 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 | let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
[398/433] Compiling DoggieCore SDXMLAttribute.swift
[399/433] Compiling DoggieCore SDXMLDocument.swift
[400/433] Compiling DoggieCore SDXMLElement.swift
[401/433] Compiling DoggieCore SDXMLParser.swift
[402/433] Compiling DoggieCore SDXMLString.swift
[403/433] Compiling DoggieCore BrotliEncoder.swift
[404/433] Compiling DoggieCore Deflate.swift
[405/433] Compiling DoggieCore Inflate.swift
[406/433] Compiling DoggieCore zlib.swift
[407/433] Compiling DoggieCore Sendable.swift
[408/433] Compiling DoggieCore SerialRunLoop.swift
[409/433] Compiling DoggieCore MIMEType.swift
[410/433] Compiling DoggieCore MediaType.swift
[411/433] Compiling DoggieCore BinaryFixedPoint.swift
[412/433] Compiling DoggieCore ByteCodable.swift
[413/433] Compiling DoggieCore Endianness.swift
[414/433] Compiling DoggieCore Signature.swift
[415/433] Compiling DoggieCore Json.swift
[416/433] Compiling DoggieCore JsonCodable.swift
[417/433] Compiling DoggieCore JsonConvertible.swift
[418/433] Compiling DoggieCore JsonNumber.swift
[419/433] Compiling DoggieCore JsonNumberCodable.swift
[420/433] Compiling DoggieCore FileExtension.swift
[421/433] Compiling DoggieCore TypePunned.swift
[422/433] Compiling DoggieCore TypedData.swift
[423/433] Compiling DoggieCore URLComponents.swift
[424/433] Compiling DoggieCore UUID.swift
[425/433] Compiling DoggieCore WeakDictionary.swift
[426/433] Compiling DoggieCore WeakSet.swift
[427/433] Compiling DoggieCore CollectionExtension.swift
[428/433] Compiling DoggieCore Decimal.swift
[429/433] Compiling DoggieCore Dictionary.swift
[430/433] Compiling DoggieCore Equatable.swift
[431/433] Compiling DoggieCore FloatingPoint.swift
[432/433] Compiling DoggieCore Integer.swift
[433/433] Emitting module DoggieCore
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:287:22: warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
268 | @inlinable
269 | @inline(__always)
270 | public mutating func append<S: Sequence>(contentsOf newElements: S) where S.Element == Element {
| `- note: 'S' previously declared here
271 |
272 | let old_count = base.count
:
285 |
286 | @inline(__always)
287 | func _append<S: Sequence>(_ newElements: S) where S.Element == Element {
| `- warning: generic parameter 'S' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
288 |
289 | let buffer = UnsafeMutableBufferPointer(start: base.address + old_count, count: underestimatedCount - old_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:375:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
373 |
374 | @inline(__always)
375 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
376 |
377 | let buffer = UnsafeMutableBufferPointer(start: base.address + subRange.lowerBound, count: newElements_count)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/MappedBuffer.swift:402:26: warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
345 | @inlinable
346 | @inline(__always)
347 | public mutating func replaceSubrange<C: Collection>(_ subRange: Range<Int>, with newElements: C) where C.Element == Element {
| `- note: 'C' previously declared here
348 |
349 | precondition(0 <= subRange.lowerBound, "Index out of range.")
:
400 |
401 | @inline(__always)
402 | func _append<C: Collection>(_ newElements: C) where C.Element == Element {
| `- warning: generic parameter 'C' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
403 |
404 | let buffer = UnsafeMutableBufferPointer(start: address, count: newElements_count)
[434/461] Compiling DoggieMath OverlapAddConvolve.swift
[435/461] Compiling DoggieMath HalfInverseRadix2CooleyTukey.swift
[436/461] Compiling DoggieMath HalfRadix2CooleyTukey.swift
[437/463] Compiling DoggieMath cooleytukey_2.swift
[438/463] Compiling DoggieMath cooleytukey_4.swift
[439/463] Compiling DoggieMath cooleytukey_8.swift
[440/463] Compiling DoggieMath half_cooleytukey_8.swift
[441/463] Compiling DoggieMath Wrapper.swift
[442/463] Compiling DoggieMath Arithmetic.swift
[443/463] Compiling DoggieMath CircularConvolve.swift
[444/463] Compiling DoggieMath CircularConvolve2D.swift
[445/463] Compiling DoggieMath CooleyTukey2D.swift
[446/463] Compiling DoggieMath Rational.swift
[447/463] Compiling DoggieMath SafeFunction.swift
[448/463] Compiling DoggieMath Complex.swift
[449/463] Compiling DoggieMath Exported.swift
[450/463] Compiling DoggieMath Extension.swift
[451/463] Compiling DoggieMath half_cooleytukey_16.swift
[452/463] Compiling DoggieMath half_cooleytukey_2.swift
[453/463] Compiling DoggieMath half_cooleytukey_4.swift
[454/463] Compiling DoggieMath InverseRadix2CooleyTukey.swift
[455/463] Compiling DoggieMath Radix2CooleyTukey.swift
[456/463] Compiling DoggieMath cooleytukey_16.swift
[457/463] Compiling DoggieMath DirectConvolve.swift
[458/463] Compiling DoggieMath LinearAlgebra.swift
[459/463] Compiling DoggieMath Move.swift
[460/463] Compiling DoggieMath Fourier.swift
[461/463] Compiling DoggieMath Maths.swift
[462/463] Compiling DoggieMath Polynomial.swift
[463/463] Emitting module DoggieMath
[464/502] Compiling DoggieGeometry Matrix.swift
[465/502] Compiling DoggieGeometry Point.swift
[466/502] Compiling DoggieGeometry Rect.swift
[467/502] Compiling DoggieGeometry SDTransform.swift
[468/506] Compiling DoggieGeometry Size.swift
[469/506] Compiling DoggieGeometry Tensor.swift
[470/506] Compiling DoggieGeometry Vector.swift
[471/506] Compiling DoggieGeometry PathCoder.swift
[472/506] Compiling DoggieGeometry CGSize.swift
[473/506] Compiling DoggieGeometry SwiftPlayground.swift
[474/506] Compiling DoggieGeometry Arithmetic.swift
[475/506] Compiling DoggieGeometry Bezier.swift
[476/506] Compiling DoggieGeometry BezierArc.swift
[477/506] Compiling DoggieGeometry PathBuilder.swift
[478/506] Compiling DoggieGeometry ShapeRegion.swift
[479/506] Compiling DoggieGeometry ShapeRegionOp.swift
[480/506] Compiling DoggieGeometry ShapeRegionWinding.swift
[481/506] Compiling DoggieGeometry ShapeTweening.swift
[482/506] Compiling DoggieGeometry ShapeWinding.swift
[483/506] Compiling DoggieGeometry VariableRoundStroke.swift
[484/506] Compiling DoggieGeometry BreakLoop.swift
[485/506] Compiling DoggieGeometry CubicBezierTriangularPatch.swift
[486/506] Compiling DoggieGeometry LineSegment.swift
[487/506] Compiling DoggieGeometry QuadBezier.swift
[488/506] Compiling DoggieGeometry Exported.swift
[489/506] Compiling DoggieGeometry PathStroke.swift
[490/506] Compiling DoggieGeometry SVGPathCoder.swift
[491/506] Compiling DoggieGeometry Shape.swift
[492/506] Compiling DoggieGeometry ShapeSegment.swift
[493/506] Compiling DoggieGeometry BezierOffset.swift
[494/506] Compiling DoggieGeometry BezierProtocol.swift
[495/506] Compiling DoggieGeometry CubicBezier.swift
[496/506] Compiling DoggieGeometry CubicBezierPatch.swift
[497/506] Compiling DoggieGeometry AppleExported.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGeometry/ApplePlatform/Geometry/CGPath.swift:235:13: warning: switch must be exhaustive
233 | for i in 0..<self.elementCount {
234 | let type = self.element(at: i, associatedPoints: &points)
235 | switch type {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.cubicCurveTo'
| |- note: add missing case: '.quadraticCurveTo'
| `- note: add missing cases
236 | case .moveTo: path._move(to: Point(points[0]))
237 | case .lineTo: path._line(to: Point(points[0]))
[498/506] Compiling DoggieGeometry CGAffineTransform.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGeometry/ApplePlatform/Geometry/CGPath.swift:235:13: warning: switch must be exhaustive
233 | for i in 0..<self.elementCount {
234 | let type = self.element(at: i, associatedPoints: &points)
235 | switch type {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.cubicCurveTo'
| |- note: add missing case: '.quadraticCurveTo'
| `- note: add missing cases
236 | case .moveTo: path._move(to: Point(points[0]))
237 | case .lineTo: path._line(to: Point(points[0]))
[499/506] Compiling DoggieGeometry CGPath.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGeometry/ApplePlatform/Geometry/CGPath.swift:235:13: warning: switch must be exhaustive
233 | for i in 0..<self.elementCount {
234 | let type = self.element(at: i, associatedPoints: &points)
235 | switch type {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.cubicCurveTo'
| |- note: add missing case: '.quadraticCurveTo'
| `- note: add missing cases
236 | case .moveTo: path._move(to: Point(points[0]))
237 | case .lineTo: path._line(to: Point(points[0]))
[500/506] Compiling DoggieGeometry CGPoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGeometry/ApplePlatform/Geometry/CGPath.swift:235:13: warning: switch must be exhaustive
233 | for i in 0..<self.elementCount {
234 | let type = self.element(at: i, associatedPoints: &points)
235 | switch type {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.cubicCurveTo'
| |- note: add missing case: '.quadraticCurveTo'
| `- note: add missing cases
236 | case .moveTo: path._move(to: Point(points[0]))
237 | case .lineTo: path._line(to: Point(points[0]))
[501/506] Compiling DoggieGeometry CGRect.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGeometry/ApplePlatform/Geometry/CGPath.swift:235:13: warning: switch must be exhaustive
233 | for i in 0..<self.elementCount {
234 | let type = self.element(at: i, associatedPoints: &points)
235 | switch type {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.cubicCurveTo'
| |- note: add missing case: '.quadraticCurveTo'
| `- note: add missing cases
236 | case .moveTo: path._move(to: Point(points[0]))
237 | case .lineTo: path._line(to: Point(points[0]))
[502/506] Compiling DoggieGeometry Extension.swift
[503/506] Compiling DoggieGeometry EdgeInsets.swift
[504/506] Compiling DoggieGeometry Ellipse.swift
[505/506] Compiling DoggieGeometry Geometry.swift
[506/506] Emitting module DoggieGeometry
[507/723] Compiling DoggieGraphics AppleExported.swift
[508/723] Compiling DoggieGraphics CGColor.swift
[509/723] Compiling DoggieGraphics CGColorSpace.swift
[510/723] Compiling DoggieGraphics CGContext.swift
[511/723] Compiling DoggieGraphics CGFont.swift
[512/723] Compiling DoggieGraphics CGGradient.swift
[513/723] Compiling DoggieGraphics CGPattern.swift
[514/723] Compiling DoggieGraphics CGShading.swift
[515/723] Compiling DoggieGraphics CoreText.swift
[516/723] Compiling DoggieGraphics CGImage.swift
[517/723] Compiling DoggieGraphics CVPixelFormat.swift
[518/723] Compiling DoggieGraphics CoreVideo.swift
[519/723] Compiling DoggieGraphics IOSurface.swift
[520/723] Compiling DoggieGraphics NSImage.swift
[521/723] Compiling DoggieGraphics UIImage.swift
[522/723] Compiling DoggieGraphics AVDepthData.swift
[523/723] Compiling DoggieGraphics AVPortraitEffectsMatte.swift
[524/723] Compiling DoggieGraphics CGAnimatedImage.swift
[525/723] Compiling DoggieGraphics CGImageDestination.swift
[526/723] Compiling DoggieGraphics CGImageRep.swift
[527/723] Compiling DoggieGraphics CGImageSource.swift
[528/723] Compiling DoggieGraphics Metal.swift
[529/723] Compiling DoggieGraphics CIContext.swift
[530/723] Compiling DoggieGraphics CIContextPool.swift
[531/747] Compiling DoggieGraphics SVGNoiseGenerator.swift
[532/747] Compiling DoggieGraphics SimplexNoise.swift
[533/747] Compiling DoggieGraphics PDFContext.swift
[534/747] Compiling DoggieGraphics PDFContextEncoder.swift
[535/747] Compiling DoggieGraphics PDFContextImage.swift
[536/747] Compiling DoggieGraphics PDFContextPage.swift
[537/747] Compiling DoggieGraphics PDFDecoder.swift
[538/747] Compiling DoggieGraphics PDFDocument.swift
[539/747] Compiling DoggieGraphics ASCII85Filter.swift
[540/747] Compiling DoggieGraphics ASCIIHexFilter.swift
[541/747] Compiling DoggieGraphics PDFFilter.swift
[542/747] Compiling DoggieGraphics PDFName.swift
[543/747] Compiling DoggieGraphics PDFNumber.swift
[544/747] Compiling DoggieGraphics PDFObject.swift
[545/747] Compiling DoggieGraphics PDFPage.swift
[546/747] Compiling DoggieGraphics PDFBitmap.swift
[547/747] Compiling DoggieGraphics PDFColorSpace.swift
[548/747] Compiling DoggieGraphics PDFCommand.swift
[549/747] Compiling DoggieGraphics PDFDrawPage.swift
[550/747] Compiling DoggieGraphics PDFFunction.swift
[551/747] Compiling DoggieGraphics PDFRenderer.swift
[552/747] Compiling DoggieGraphics PDFStream.swift
[553/747] Compiling DoggieGraphics PDFString.swift
[554/747] Compiling DoggieGraphics PDFXref.swift
[555/771] Compiling DoggieGraphics ICC Creator.swift
[556/771] Compiling DoggieGraphics ICCColorSpace.swift
[557/771] Compiling DoggieGraphics iccProfile.swift
[558/771] Compiling DoggieGraphics iccCurve.swift
[559/771] Compiling DoggieGraphics iccLUTTransform.swift
[560/771] Compiling DoggieGraphics iccMultiLocalizedUnicode.swift
[561/771] Compiling DoggieGraphics iccNamedColor.swift
[562/771] Compiling DoggieGraphics iccTagData.swift
[563/771] Compiling DoggieGraphics iccTextDescription.swift
[564/771] Compiling DoggieGraphics iccTransform.swift
[565/771] Compiling DoggieGraphics iccDateTimeNumber.swift
[566/771] Compiling DoggieGraphics iccMatrix.swift
[567/771] Compiling DoggieGraphics iccType.swift
[568/771] Compiling DoggieGraphics iccXYZNumber.swift
[569/771] Compiling DoggieGraphics LinearToneColorSpace.swift
[570/771] Compiling DoggieGraphics PredefinedColorSpace.swift
[571/771] Compiling DoggieGraphics WrappedColorSpace.swift
[572/771] Compiling DoggieGraphics ColorSpaceProtocol.swift
[573/771] Compiling DoggieGraphics Illuminant.swift
[574/771] Compiling DoggieGraphics RenderingIntent.swift
[575/771] Compiling DoggieGraphics DrawableContext.swift
[576/771] Compiling DoggieGraphics Gradient.swift
[577/771] Compiling DoggieGraphics MeshGradient.swift
[578/771] Compiling DoggieGraphics Pattern.swift
[579/771] Compiling DoggieGraphics SwiftPlayground.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[580/771] Compiling DoggieGraphics AnyColor.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[581/771] Compiling DoggieGraphics Color.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[582/771] Compiling DoggieGraphics ColorProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[583/771] Compiling DoggieGraphics PredefinedColor.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[584/771] Compiling DoggieGraphics ColorBlendKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[585/771] Compiling DoggieGraphics ColorBlendMode.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[586/771] Compiling DoggieGraphics ColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[587/771] Compiling DoggieGraphics CMYColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[588/771] Compiling DoggieGraphics CMYKColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[589/771] Compiling DoggieGraphics DeviceNColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[590/771] Compiling DoggieGraphics GrayColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[591/771] Compiling DoggieGraphics LabColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[592/771] Compiling DoggieGraphics LuvColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[593/771] Compiling DoggieGraphics RGBColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[594/771] Compiling DoggieGraphics XYZColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[595/771] Compiling DoggieGraphics YCbCrColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[596/771] Compiling DoggieGraphics YxyColorModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[597/771] Compiling DoggieGraphics ColorCompositingKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[598/771] Compiling DoggieGraphics ColorCompositingMode.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[599/771] Compiling DoggieGraphics ColorPixel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[600/771] Compiling DoggieGraphics Float16ColorPixel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[601/771] Compiling DoggieGraphics Float32ColorPixel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[602/771] Compiling DoggieGraphics Float64ColorPixel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[603/771] Compiling DoggieGraphics Resolution.swift
[604/771] Compiling DoggieGraphics StencilTexture.swift
[605/771] Compiling DoggieGraphics Texture.swift
[606/771] Compiling DoggieGraphics TextureProtocol.swift
[607/771] Compiling DoggieGraphics GrayPixelDecoder.swift
[608/771] Compiling DoggieGraphics PNGChunk.swift
[609/771] Compiling DoggieGraphics PNGFilter0.swift
[610/771] Compiling DoggieGraphics PNGInterlace.swift
[611/771] Compiling DoggieGraphics PNGRegion.swift
[612/771] Compiling DoggieGraphics RGBPixelDecoder.swift
[613/771] Compiling DoggieGraphics TIFFCompression.swift
[614/771] Compiling DoggieGraphics TIFFLZWCompression.swift
[615/771] Compiling DoggieGraphics TIFFPackBitsCompression.swift
[616/771] Compiling DoggieGraphics TIFFEncodablePixel.swift
[617/771] Compiling DoggieGraphics TIFFPrediction.swift
[618/771] Compiling DoggieGraphics TIFFRawRepresentable.swift
[619/771] Compiling DoggieGraphics AnimatedImage.swift
[620/771] Compiling DoggieGraphics PNGAnimatedEncoder.swift
[621/771] Compiling DoggieGraphics WEBPAnimatedEncoder.swift
[622/771] Compiling DoggieGraphics APNGDecoder.swift
[623/771] Compiling DoggieGraphics BMPDecoder.swift
[624/771] Compiling DoggieGraphics ImageRepDecoder.swift
[625/771] Compiling DoggieGraphics JPEGDecoder.swift
[626/771] Compiling DoggieGraphics PNGDecoder.swift
[627/771] Compiling DoggieGraphics SFNTHEAD.swift
[628/771] Compiling DoggieGraphics SFNTHHEA.swift
[629/771] Compiling DoggieGraphics SFNTLTAG.swift
[630/771] Compiling DoggieGraphics SFNTMAXP.swift
[631/771] Compiling DoggieGraphics SFNTMORX.swift
[632/771] Compiling DoggieGraphics SFNTNAME.swift
[633/771] Compiling DoggieGraphics SFNTOS2.swift
[634/771] Compiling DoggieGraphics SFNTPOST.swift
[635/771] Compiling DoggieGraphics SFNTPlatform.swift
[636/771] Compiling DoggieGraphics SFNTSBIX.swift
[637/771] Compiling DoggieGraphics SFNTVHEA.swift
[638/771] Compiling DoggieGraphics TTCDecoder.swift
[639/771] Compiling DoggieGraphics WOFFDecoder.swift
[640/771] Compiling DoggieGraphics FontFaceEncoder.swift
[641/771] Compiling DoggieGraphics OTFEncoder.swift
[642/771] Compiling DoggieGraphics WOFFEncoder.swift
[643/771] Compiling DoggieGraphics Font.swift
[644/771] Compiling DoggieGraphics FontCollection.swift
[645/771] Compiling DoggieGraphics AnyImage.swift
[646/771] Compiling DoggieGraphics Image.swift
[647/771] Compiling DoggieGraphics ImageOrientation.swift
[648/771] Compiling DoggieGraphics ImageProtocol.swift
[649/771] Compiling DoggieGraphics RawPixelProtocol.swift
[650/771] Compiling DoggieGraphics Resampling.swift
[651/771] Compiling DoggieGraphics FloatComponentPixel.swift
[652/771] Compiling DoggieGraphics Gray16ColorPixel.swift
[653/771] Compiling DoggieGraphics Gray32ColorPixel.swift
[654/771] Compiling DoggieGraphics GrayColorPixel.swift
[655/771] Compiling DoggieGraphics ABGR32ColorPixel.swift
[656/771] Compiling DoggieGraphics ARGB32ColorPixel.swift
[657/771] Compiling DoggieGraphics ARGB64ColorPixel.swift
[658/771] Compiling DoggieGraphics BGRA32ColorPixel.swift
[659/771] Compiling DoggieGraphics RGBA32ColorPixel.swift
[660/771] Compiling DoggieGraphics RGBA64ColorPixel.swift
[661/771] Compiling DoggieGraphics RGBColorPixel.swift
[662/771] Compiling DoggieGraphics AnyColorSpace.swift
[663/771] Compiling DoggieGraphics ChromaticAdaptationAlgorithm.swift
[664/771] Compiling DoggieGraphics ColorSpace.swift
[665/771] Compiling DoggieGraphics CIELabColorSpace.swift
[666/771] Compiling DoggieGraphics CIELuvColorSpace.swift
[667/771] Compiling DoggieGraphics CIEXYZColorSpace.swift
[668/771] Compiling DoggieGraphics CIEYxyColorSpace.swift
[669/771] Compiling DoggieGraphics CalibratedGrayColorSpace.swift
[670/771] Compiling DoggieGraphics AdobeRGB.swift
[671/771] Compiling DoggieGraphics CalibratedRGBColorSpace.swift
[672/771] Compiling DoggieGraphics displayP3.swift
[673/771] Compiling DoggieGraphics sRGB.swift
[674/771] Compiling DoggieGraphics ColorSpaceBaseProtocol.swift
[675/771] Compiling DoggieGraphics DrawGradient.swift
[676/771] Compiling DoggieGraphics DrawImage.swift
[677/771] Compiling DoggieGraphics DrawMeshGradient.swift
[678/771] Compiling DoggieGraphics DrawPattern.swift
[679/771] Compiling DoggieGraphics DrawShadow.swift
[680/771] Compiling DoggieGraphics DrawShape.swift
[681/771] Compiling DoggieGraphics ImageContext.swift
[682/771] Compiling DoggieGraphics ImageContextExtension.swift
[683/771] Compiling DoggieGraphics PixelBlender.swift
[684/771] Compiling DoggieGraphics Rasterizer.swift
[685/771] Compiling DoggieGraphics Rendering.swift
[686/771] Compiling DoggieGraphics SetClip.swift
[687/771] Compiling DoggieGraphics Stencil.swift
[688/771] Compiling DoggieGraphics BayerDithering.swift
[689/771] Compiling DoggieGraphics BilateralFilter.swift
[690/771] Compiling DoggieGraphics ColorSeparation.swift
[691/771] Compiling DoggieGraphics DifferenceOfGaussian.swift
[692/771] Compiling DoggieGraphics DisplacementMap.swift
[693/771] Compiling DoggieGraphics GaussianBlur.swift
[694/771] Compiling DoggieGraphics ImageConvolution.swift
[695/771] Compiling DoggieGraphics LaplacianOfGaussian.swift
[696/771] Compiling DoggieGraphics SVGTurbulence.swift
[697/771] Compiling DoggieGraphics Underpainting.swift
[698/771] Compiling DoggieGraphics kMeansClustering.swift
[699/771] Compiling DoggieGraphics TIFFDecoder.swift
[700/771] Compiling DoggieGraphics WEBPDecoder.swift
[701/771] Compiling DoggieGraphics BMPEncoder.swift
[702/771] Compiling DoggieGraphics ImageRepEncoder.swift
[703/771] Compiling DoggieGraphics JPEGEncoder.swift
[704/771] Compiling DoggieGraphics PNGEncoder.swift
[705/771] Compiling DoggieGraphics TIFFEncoder.swift
[706/771] Compiling DoggieGraphics WEBPEncoder.swift
[707/771] Compiling DoggieGraphics ImageRep.swift
[708/771] Compiling DoggieGraphics FastDecode.swift
[709/771] Compiling DoggieGraphics _fast_decode_alpha_first.swift
[710/771] Compiling DoggieGraphics _fast_decode_alpha_last.swift
[711/771] Compiling DoggieGraphics _fast_decode_alpha_none.swift
[712/771] Compiling DoggieGraphics _fast_decode_float.swift
[713/771] Compiling DoggieGraphics _fast_decode_pixel.swift
[714/771] Compiling DoggieGraphics RawBitmap.swift
[715/771] Compiling DoggieGraphics SlowDecode.swift
[716/771] Compiling DoggieGraphics _aligned_channel.swift
[717/771] Compiling DoggieGraphics _aligned_float_channel.swift
[718/771] Compiling DoggieGraphics _channel_to_double.swift
[719/771] Compiling DoggieGraphics _float_channel.swift
[720/771] Compiling DoggieGraphics _unsigned_aligned_channel.swift
[721/771] Compiling DoggieGraphics _unsigned_channel.swift
[722/771] Compiling DoggieGraphics _unsigned_pixel.swift
[723/771] Compiling DoggieGraphics Stroke.swift
[724/771] Compiling DoggieGraphics Exported.swift
[725/771] Compiling DoggieGraphics CFF2Decoder.swift
[726/771] Compiling DoggieGraphics CFF2INDEX.swift
[727/771] Compiling DoggieGraphics CFFCharStrings.swift
[728/771] Compiling DoggieGraphics CFFDICT.swift
[729/771] Compiling DoggieGraphics CFFDecoder.swift
[730/771] Compiling DoggieGraphics CFFEncoding.swift
[731/771] Compiling DoggieGraphics CFFFDSelect.swift
[732/771] Compiling DoggieGraphics CFFFontFace.swift
[733/771] Compiling DoggieGraphics CFFINDEX.swift
[734/771] Compiling DoggieGraphics FontDecoder.swift
[735/771] Compiling DoggieGraphics OpenTypeDecoder.swift
[736/771] Compiling DoggieGraphics AATStateTable.swift
[737/771] Compiling DoggieGraphics OTFFeatureList.swift
[738/771] Compiling DoggieGraphics OTFGDEF.swift
[739/771] Compiling DoggieGraphics OTFGPOS.swift
[740/771] Compiling DoggieGraphics OTFGSUB.swift
[741/771] Compiling DoggieGraphics OTFLookupList.swift
[742/771] Compiling DoggieGraphics OTFScriptList.swift
[743/771] Compiling DoggieGraphics SFNTCMAP.swift
[744/771] Compiling DoggieGraphics SFNTFEAT.swift
[745/771] Compiling DoggieGraphics SFNTFontFace.swift
[746/771] Compiling DoggieGraphics SFNTGLYF.swift
[747/771] Emitting module DoggieGraphics
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:106:1: warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
104 | #elseif canImport(AppKit)
105 |
106 | extension Shape: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Shape' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
107 |
108 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:116:1: warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
114 | #endif
115 |
116 | extension Shape.Component: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Component' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
117 |
118 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:124:1: warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
122 | }
123 |
124 | extension ShapeRegion: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'ShapeRegion' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
125 |
126 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/ApplePlatform/SwiftPlayground.swift:132:1: warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
130 | }
131 |
132 | extension ShapeRegion.Solid: CustomPlaygroundDisplayConvertible {
| |- warning: extension declares a conformance of imported type 'Solid' to imported protocol 'CustomPlaygroundDisplayConvertible'; this will not behave correctly if the owners of 'DoggieGeometry' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
133 |
134 | @inlinable
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGraphics/Color/Color.swift:471:25: warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
25 |
26 | @frozen
27 | public struct Color<Model: ColorModel>: ColorProtocol, _ColorProtocol {
| `- note: 'Model' previously declared here
28 |
29 | public var colorSpace: DoggieGraphics.ColorSpace<Model>
:
469 |
470 | @inlinable
471 | public func convert<Model>(to colorSpace: DoggieGraphics.ColorSpace<Model>, intent: RenderingIntent = .default) -> Color<Model> {
| `- warning: generic parameter 'Model' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
472 | let _color = self.colorSpace.convert(self.color, to: colorSpace, intent: intent)
473 | return Color<Model>(colorSpace: colorSpace, color: _color, opacity: self.opacity)
[748/771] Compiling DoggieGraphics AvailableColorSpaces.swift
[749/771] Compiling DoggieGraphics AvailableFonts.swift
[750/771] Compiling DoggieGraphics Prespecialize.swift
[751/771] Compiling DoggieGraphics SVGContext.swift
[752/771] Compiling DoggieGraphics SVGBlendEffect.swift
[753/771] Compiling DoggieGraphics SVGColorMatrixEffect.swift
[754/771] Compiling DoggieGraphics SVGComponentTransferEffect.swift
[755/771] Compiling DoggieGraphics SVGConvolveMatrixEffect.swift
[756/771] Compiling DoggieGraphics SVGDisplacementMapEffect.swift
[757/771] Compiling DoggieGraphics SVGDropShadowEffect.swift
[758/771] Compiling DoggieGraphics SVGEffect.swift
[759/771] Compiling DoggieGraphics SVGFloodEffect.swift
[760/771] Compiling DoggieGraphics SVGGaussianBlurEffect.swift
[761/771] Compiling DoggieGraphics SVGHueRotateEffect.swift
[762/771] Compiling DoggieGraphics SVGImageEffect.swift
[763/771] Compiling DoggieGraphics SVGLightingEffect.swift
[764/771] Compiling DoggieGraphics SVGLuminanceToAlphaEffect.swift
[765/771] Compiling DoggieGraphics SVGMergeEffect.swift
[766/771] Compiling DoggieGraphics SVGMorphologyEffect.swift
[767/771] Compiling DoggieGraphics SVGOffsetEffect.swift
[768/771] Compiling DoggieGraphics SVGSaturateEffect.swift
[769/771] Compiling DoggieGraphics SVGTileEffect.swift
[770/771] Compiling DoggieGraphics SVGTurbulenceEffect.swift
[771/771] Compiling DoggieGraphics FixedNumber.swift
[772/796] Compiling DoggieGPU ShaderLoader.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:39:96: error: type 'Bundle' has no member 'module'
37 | defer { lck.unlock() }
38 |
39 | guard let library = try? libraries[device] ?? device.makeDefaultLibrary(bundle: Bundle.module) else { return nil }
| `- error: type 'Bundle' has no member 'module'
40 | libraries[device] = library
41 |
[773/796] Compiling DoggieGPU WrapTileKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:39:96: error: type 'Bundle' has no member 'module'
37 | defer { lck.unlock() }
38 |
39 | guard let library = try? libraries[device] ?? device.makeDefaultLibrary(bundle: Bundle.module) else { return nil }
| `- error: type 'Bundle' has no member 'module'
40 | libraries[device] = library
41 |
[774/796] Compiling DoggieGPU kMeansClusteringKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/ShaderLoader.swift:39:96: error: type 'Bundle' has no member 'module'
37 | defer { lck.unlock() }
38 |
39 | guard let library = try? libraries[device] ?? device.makeDefaultLibrary(bundle: Bundle.module) else { return nil }
| `- error: type 'Bundle' has no member 'module'
40 | libraries[device] = library
41 |
[775/798] Compiling DoggieGPU GPContextExtension.swift
[776/798] Compiling DoggieGPU GPContextPattern.swift
[777/798] Emitting module DoggieGPU
[778/798] Compiling DoggieGPU Packed.swift
[779/798] Compiling DoggieGPU SIMD.swift
[780/798] Compiling DoggieGPU GPContext.swift
[781/798] Compiling DoggieGPU GPContextBase.swift
[782/798] Compiling DoggieGPU PalettizeKernel.swift
[783/798] Compiling DoggieGPU SVGComponentTransferKernel.swift
[784/798] Compiling DoggieGPU SVGConvolveKernel.swift
[785/798] Compiling DoggieGPU MeshGradientKernel.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:89:79: error: type 'Bundle' has no member 'module'
87 | } else {
88 |
89 | guard let library = try? device.makeDefaultLibrary(bundle: Bundle.module) else { return nil }
| `- error: type 'Bundle' has no member 'module'
90 | guard let _pipeline = Pipeline(device: device, library: library) else { return nil }
91 |
[786/798] Compiling DoggieGPU MTLDevice.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.swift:89:79: error: type 'Bundle' has no member 'module'
87 | } else {
88 |
89 | guard let library = try? device.makeDefaultLibrary(bundle: Bundle.module) else { return nil }
| `- error: type 'Bundle' has no member 'module'
90 | guard let _pipeline = Pipeline(device: device, library: library) else { return nil }
91 |
[787/798] Compiling DoggieGPU ConvolveKernel.swift
[788/798] Compiling DoggieGPU CoreImage.swift
[789/798] Compiling DoggieGPU MorphologyKernel.swift
[790/798] Compiling DoggieGPU Exported.swift
[791/798] Compiling DoggieGPU CGContextProcessorKernel.swift
[792/798] Compiling DoggieGPU CGPathProcessorKernel.swift
[793/798] Compiling DoggieGPU SVGDisplacementMapKernel.swift
[794/798] Compiling DoggieGPU SVGLightingKernel.swift
[795/798] Compiling DoggieGPU SVGTurbulenceKernel.swift
[796/798] Compiling DoggieGPU BilateralFilter.swift
[797/798] Compiling DoggieGPU CIImage.swift
[798/798] Compiling DoggieGPU CIVector.swift
warning: 'spi-builder-workspace': found 10 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/WrapTileKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/MeshGradientKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGLightingKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGComponentTransferKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/BilateralFilter.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGConvolveKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/PalettizeKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGDisplacementMapKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/kMeansClusteringKernel.metal
/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGTurbulenceKernel.metal
BUILD FAILURE 6.1 macosSpm