Build Information
Successful build of Doggie, reference main (d49683
), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 10:02:49 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
91 | (buffer + $0).initialize(to: transform(self[self.index(startIndex, offsetBy: $0)]))
| `- warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
92 | }
93 | initializedCount = count
[644/658] 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)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:46:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
44 | @inlinable
45 | @inline(__always)
46 | public func parallelEach(body: (Element) -> Void) {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
47 | DispatchQueue.concurrentPerform(iterations: self.count) { body(self[self.index(startIndex, offsetBy: $0)]) }
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:47:72: warning: capture of non-sendable type 'Self.Type' in an isolated closure
45 | @inline(__always)
46 | public func parallelEach(body: (Element) -> Void) {
47 | DispatchQueue.concurrentPerform(iterations: self.count) { body(self[self.index(startIndex, offsetBy: $0)]) }
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:47:82: warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
45 | @inline(__always)
46 | public func parallelEach(body: (Element) -> Void) {
47 | DispatchQueue.concurrentPerform(iterations: self.count) { body(self[self.index(startIndex, offsetBy: $0)]) }
| `- warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:84:34: warning: capture of non-sendable type 'Self.Type' in an isolated closure
82 | /// sequence.
83 | @inlinable
84 | public func parallelMap<T>(_ transform: (Element) -> T) -> [T] {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
85 |
86 | let count = self.count
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:91:56: warning: capture of non-sendable type 'Self.Type' in an isolated closure
89 | guard let buffer = buffer.baseAddress else { return }
90 | DispatchQueue.concurrentPerform(iterations: count) {
91 | (buffer + $0).initialize(to: transform(self[self.index(startIndex, offsetBy: $0)]))
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
92 | }
93 | initializedCount = count
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:91:66: warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
89 | guard let buffer = buffer.baseAddress else { return }
90 | DispatchQueue.concurrentPerform(iterations: count) {
91 | (buffer + $0).initialize(to: transform(self[self.index(startIndex, offsetBy: $0)]))
| `- warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
92 | }
93 | initializedCount = count
[645/658] 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)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:46:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
44 | @inlinable
45 | @inline(__always)
46 | public func parallelEach(body: (Element) -> Void) {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
47 | DispatchQueue.concurrentPerform(iterations: self.count) { body(self[self.index(startIndex, offsetBy: $0)]) }
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:47:72: warning: capture of non-sendable type 'Self.Type' in an isolated closure
45 | @inline(__always)
46 | public func parallelEach(body: (Element) -> Void) {
47 | DispatchQueue.concurrentPerform(iterations: self.count) { body(self[self.index(startIndex, offsetBy: $0)]) }
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:47:82: warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
45 | @inline(__always)
46 | public func parallelEach(body: (Element) -> Void) {
47 | DispatchQueue.concurrentPerform(iterations: self.count) { body(self[self.index(startIndex, offsetBy: $0)]) }
| `- warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:84:34: warning: capture of non-sendable type 'Self.Type' in an isolated closure
82 | /// sequence.
83 | @inlinable
84 | public func parallelMap<T>(_ transform: (Element) -> T) -> [T] {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
85 |
86 | let count = self.count
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:91:56: warning: capture of non-sendable type 'Self.Type' in an isolated closure
89 | guard let buffer = buffer.baseAddress else { return }
90 | DispatchQueue.concurrentPerform(iterations: count) {
91 | (buffer + $0).initialize(to: transform(self[self.index(startIndex, offsetBy: $0)]))
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
92 | }
93 | initializedCount = count
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:91:66: warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
89 | guard let buffer = buffer.baseAddress else { return }
90 | DispatchQueue.concurrentPerform(iterations: count) {
91 | (buffer + $0).initialize(to: transform(self[self.index(startIndex, offsetBy: $0)]))
| `- warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
92 | }
93 | initializedCount = count
[646/658] Compiling DoggieCore UnsafeSendable.swift
[647/658] Compiling DoggieCore Exported.swift
[648/658] Compiling DoggieCore Algorithm.swift
[649/658] Compiling DoggieCore Cache.swift
[650/658] Compiling DoggieCore ContiguousBuffer.swift
[651/658] Compiling DoggieCore Data.swift
[652/658] Compiling DoggieCore AppleCompression.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:122:72: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
123 | }
124 | }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:121:88: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
119 |
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
123 | }
[653/658] Compiling DoggieCore AppleExported.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:122:72: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
123 | }
124 | }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:121:88: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
119 |
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
123 | }
[654/658] Compiling DoggieCore Metal.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:122:72: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
123 | }
124 | }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:121:88: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
119 |
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
123 | }
[655/658] Compiling DoggieCore NSItemProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:122:72: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
123 | }
124 | }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:121:88: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
119 |
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
123 | }
[656/658] Compiling DoggieCore CompressionCodec.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:122:72: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
123 | }
124 | }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:121:88: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
119 |
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
123 | }
[657/658] Compiling DoggieCore BrotliDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:122:72: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
123 | }
124 | }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/ApplePlatform/NSItemProvider.swift:121:88: warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
119 |
120 | @discardableResult
121 | public func loadObject<Decoder: NSItemProviderDecoder>(ofType aType: Decoder.Type, completionHandler: @escaping (Decoder?, Error?) -> Void) -> Progress {
| `- warning: capture of non-sendable type 'Decoder.Type' in an isolated closure
122 | return self.loadObject(ofClass: _ItemProvider<Decoder>.self) { completionHandler($0.flatMap { $0 as? _ItemProvider<Decoder> }.map { $0.item }, $1) }
123 | }
[658/658] Emitting module DoggieCore
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'Foundation'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'Sendable' was already stated in the type's module 'Foundation'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h:42:9: note: 'Decimal' implicitly conforms to protocol 'Sendable' here
40 | #define NSDecimalNoScale SHRT_MAX
41 |
42 | typedef struct NS_SWIFT_SENDABLE {
| `- note: 'Decimal' implicitly conforms to protocol 'Sendable' here
43 | signed int _exponent:8;
44 | unsigned int _length:4; // length == 0 && isNegative -> NaN
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:27:31: warning: conformance of 'Decimal' to protocol 'SendableMetatype' was already stated in the type's module 'Foundation'
25 |
26 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
27 | extension Decimal: @unchecked Sendable { }
| `- warning: conformance of 'Decimal' to protocol 'SendableMetatype' was already stated in the type's module 'Foundation'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/Applications/Xcode-26.0.0-Beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSDecimal.h:42:9: note: conformance to 'SendableMetatype' generated by macro here
40 | #define NSDecimalNoScale SHRT_MAX
41 |
42 | typedef struct NS_SWIFT_SENDABLE {
| `- note: conformance to 'SendableMetatype' generated by macro here
43 | signed int _exponent:8;
44 | unsigned int _length:4; // length == 0 && isNegative -> NaN
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:30:27: warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
28 |
29 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
30 | extension URL: @unchecked Sendable { }
| `- warning: conformance of 'URL' to protocol 'Sendable' was already stated in the type's module 'Foundation'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
Foundation.URL:2:15: note: 'URL' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URL : Equatable, Sendable, Hashable {
| `- note: 'URL' declares conformance to protocol 'Sendable' here
3 | public typealias BookmarkResolutionOptions = NSURL.BookmarkResolutionOptions
4 | public typealias BookmarkCreationOptions = NSURL.BookmarkCreationOptions
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:33:37: warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
31 |
32 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
33 | extension URLComponents: @unchecked Sendable { }
| `- warning: conformance of 'URLComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
Foundation.URLComponents:2:15: note: 'URLComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct URLComponents : Hashable, Equatable, Sendable {
| `- note: 'URLComponents' declares conformance to protocol 'Sendable' here
3 | public init()
4 | public init?(url: __shared URL, resolvingAgainstBaseURL resolve: Bool)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:36:28: warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
34 |
35 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
36 | extension Data: @unchecked Sendable { }
| `- warning: conformance of 'Data' to protocol 'Sendable' was already stated in the type's module 'Foundation'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
Foundation.Data:2:23: note: 'Data' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | @frozen public struct Data : Equatable, Hashable, RandomAccessCollection, MutableCollection, RangeReplaceableCollection, MutableDataProtocol, ContiguousBytes, Sendable {
| `- note: 'Data' declares conformance to protocol 'Sendable' here
3 | public typealias Index = Int
4 | public typealias Indices = Range<Int>
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:39:28: warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
37 |
38 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
39 | extension Date: @unchecked Sendable { }
| `- warning: conformance of 'Date' to protocol 'Sendable' was already stated in the type's module 'Foundation'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
Foundation.Date:2:15: note: 'Date' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Date : Comparable, Hashable, Equatable, Sendable {
| `- note: 'Date' declares conformance to protocol 'Sendable' here
3 | public static let timeIntervalBetween1970AndReferenceDate: Double
4 | public static var timeIntervalSinceReferenceDate: TimeInterval { get }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:42:38: warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
40 |
41 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
42 | extension DateComponents: @unchecked Sendable { }
| `- warning: conformance of 'DateComponents' to protocol 'Sendable' was already stated in the type's module 'Foundation'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
Foundation.DateComponents:2:15: note: 'DateComponents' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.9, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct DateComponents : Hashable, Equatable, Sendable {
| `- note: 'DateComponents' declares conformance to protocol 'Sendable' here
3 | public init(calendar: Calendar? = nil, timeZone: TimeZone? = nil, era: Int? = nil, year: Int? = nil, month: Int? = nil, day: Int? = nil, hour: Int? = nil, minute: Int? = nil, second: Int? = nil, nanosecond: Int? = nil, weekday: Int? = nil, weekdayOrdinal: Int? = nil, quarter: Int? = nil, weekOfMonth: Int? = nil, weekOfYear: Int? = nil, yearForWeekOfYear: Int? = nil)
4 | public var calendar: Calendar? { get set }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:45:32: warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'Foundation'
43 |
44 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
45 | extension TimeZone: @unchecked Sendable { }
| `- warning: conformance of 'TimeZone' to protocol 'Sendable' was already stated in the type's module 'Foundation'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
Foundation.TimeZone:2:15: note: 'TimeZone' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct TimeZone : Hashable, Equatable, Sendable {
| `- note: 'TimeZone' declares conformance to protocol 'Sendable' here
3 | public init?(identifier: __shared String)
4 | public init?(secondsFromGMT seconds: Int)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:48:32: warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'Foundation'
46 |
47 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
48 | extension Calendar: @unchecked Sendable { }
| `- warning: conformance of 'Calendar' to protocol 'Sendable' was already stated in the type's module 'Foundation'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
Foundation.Calendar:2:15: note: 'Calendar' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Calendar : Hashable, Equatable, Sendable {
| `- note: 'Calendar' declares conformance to protocol 'Sendable' here
3 | public enum Identifier : Sendable, CustomDebugStringConvertible {
4 | case gregorian
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:51:30: warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'Foundation'
49 |
50 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
51 | extension Locale: @unchecked Sendable { }
| `- warning: conformance of 'Locale' to protocol 'Sendable' was already stated in the type's module 'Foundation'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
Foundation.Locale:2:15: note: 'Locale' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 9.0, *)
2 | public struct Locale : Hashable, Equatable, Sendable {
| `- note: 'Locale' declares conformance to protocol 'Sendable' here
3 | public typealias LanguageDirection = NSLocale.LanguageDirection
4 | @available(macOS 13, iOS 16, tvOS 16, watchOS 9, *)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:54:28: warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'Foundation'
52 |
53 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
54 | extension UUID: @unchecked Sendable { }
| `- warning: conformance of 'UUID' to protocol 'Sendable' was already stated in the type's module 'Foundation'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
Foundation.UUID:2:15: note: 'UUID' declares conformance to protocol 'Sendable' here
1 | @available(macOS 10.8, iOS 6.0, tvOS 9.0, watchOS 2.0, *)
2 | public struct UUID : Hashable, Equatable, CustomStringConvertible, Sendable {
| `- note: 'UUID' declares conformance to protocol 'Sendable' here
3 | public var uuid: (UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8, UInt8) { get }
4 | public init()
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:57:34: warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
55 |
56 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
57 | extension OrderedSet: @unchecked Sendable where Element: Sendable { }
| `- warning: conformance of 'OrderedSet<Element>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift:12:1: note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedSet: @unchecked Sendable where Element: Sendable {}
| `- note: 'OrderedSet<Element>' declares conformance to protocol 'Sendable' here
13 |
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Concurrency/Sendable.swift:60:41: warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
58 |
59 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
60 | extension OrderedDictionary: @unchecked Sendable where Key: Sendable, Value: Sendable { }
| `- warning: conformance of 'OrderedDictionary<Key, Value>' to protocol 'Sendable' was already stated in the type's module 'OrderedCollections'
61 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift:12:1: note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
10 | //===----------------------------------------------------------------------===//
11 |
12 | extension OrderedDictionary: @unchecked Sendable
| `- note: 'OrderedDictionary<Key, Value>' declares conformance to protocol 'Sendable' here
13 | where Key: Sendable, Value: Sendable {}
14 |
/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)
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:46:30: warning: capture of non-sendable type 'Self.Type' in an isolated closure
44 | @inlinable
45 | @inline(__always)
46 | public func parallelEach(body: (Element) -> Void) {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
47 | DispatchQueue.concurrentPerform(iterations: self.count) { body(self[self.index(startIndex, offsetBy: $0)]) }
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:47:72: warning: capture of non-sendable type 'Self.Type' in an isolated closure
45 | @inline(__always)
46 | public func parallelEach(body: (Element) -> Void) {
47 | DispatchQueue.concurrentPerform(iterations: self.count) { body(self[self.index(startIndex, offsetBy: $0)]) }
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:47:82: warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
45 | @inline(__always)
46 | public func parallelEach(body: (Element) -> Void) {
47 | DispatchQueue.concurrentPerform(iterations: self.count) { body(self[self.index(startIndex, offsetBy: $0)]) }
| `- warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
48 | }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:84:34: warning: capture of non-sendable type 'Self.Type' in an isolated closure
82 | /// sequence.
83 | @inlinable
84 | public func parallelMap<T>(_ transform: (Element) -> T) -> [T] {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
85 |
86 | let count = self.count
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:91:56: warning: capture of non-sendable type 'Self.Type' in an isolated closure
89 | guard let buffer = buffer.baseAddress else { return }
90 | DispatchQueue.concurrentPerform(iterations: count) {
91 | (buffer + $0).initialize(to: transform(self[self.index(startIndex, offsetBy: $0)]))
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure
92 | }
93 | initializedCount = count
/Users/admin/builder/spi-builder-workspace/Sources/DoggieCore/Foundation/Parallel.swift:91:66: warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
89 | guard let buffer = buffer.baseAddress else { return }
90 | DispatchQueue.concurrentPerform(iterations: count) {
91 | (buffer + $0).initialize(to: transform(self[self.index(startIndex, offsetBy: $0)]))
| `- warning: capture of non-sendable type 'Self.Index.Type' in an isolated closure
92 | }
93 | initializedCount = count
[659/686] Compiling DoggieMath cooleytukey_2.swift
[660/686] Compiling DoggieMath cooleytukey_4.swift
[661/686] Compiling DoggieMath cooleytukey_8.swift
[662/688] Compiling DoggieMath half_cooleytukey_16.swift
[663/688] Compiling DoggieMath half_cooleytukey_2.swift
[664/688] Compiling DoggieMath half_cooleytukey_4.swift
[665/688] Compiling DoggieMath OverlapAddConvolve.swift
[666/688] Compiling DoggieMath HalfInverseRadix2CooleyTukey.swift
[667/688] Compiling DoggieMath HalfRadix2CooleyTukey.swift
[668/688] Compiling DoggieMath CircularConvolve.swift
[669/688] Compiling DoggieMath CircularConvolve2D.swift
[670/688] Compiling DoggieMath CooleyTukey2D.swift
[671/688] Compiling DoggieMath Rational.swift
[672/688] Compiling DoggieMath SafeFunction.swift
[673/688] Compiling DoggieMath half_cooleytukey_8.swift
[674/688] Compiling DoggieMath Wrapper.swift
[675/688] Compiling DoggieMath Arithmetic.swift
[676/688] Compiling DoggieMath InverseRadix2CooleyTukey.swift
[677/688] Compiling DoggieMath Radix2CooleyTukey.swift
[678/688] Compiling DoggieMath cooleytukey_16.swift
[679/688] Compiling DoggieMath Complex.swift
[680/688] Compiling DoggieMath Exported.swift
[681/688] Compiling DoggieMath Extension.swift
[682/688] Compiling DoggieMath DirectConvolve.swift
[683/688] Compiling DoggieMath LinearAlgebra.swift
[684/688] Compiling DoggieMath Move.swift
[685/688] Compiling DoggieMath Fourier.swift
[686/688] Compiling DoggieMath Maths.swift
[687/688] Compiling DoggieMath Polynomial.swift
[688/688] Emitting module DoggieMath
[689/727] Compiling DoggieGeometry CubicBezierTriangularPatch.swift
[690/727] Compiling DoggieGeometry LineSegment.swift
[691/727] Compiling DoggieGeometry QuadBezier.swift
[692/727] Compiling DoggieGeometry Exported.swift
[693/731] Compiling DoggieGeometry Matrix.swift
[694/731] Compiling DoggieGeometry Point.swift
[695/731] Compiling DoggieGeometry Rect.swift
[696/731] Compiling DoggieGeometry SDTransform.swift
[697/731] Compiling DoggieGeometry Size.swift
[698/731] Compiling DoggieGeometry Tensor.swift
[699/731] Compiling DoggieGeometry Vector.swift
[700/731] Compiling DoggieGeometry PathCoder.swift
[701/731] Compiling DoggieGeometry ShapeTweening.swift
[702/731] Compiling DoggieGeometry ShapeWinding.swift
[703/731] Compiling DoggieGeometry VariableRoundStroke.swift
[704/731] Compiling DoggieGeometry BreakLoop.swift
[705/731] Compiling DoggieGeometry CGSize.swift
[706/731] Compiling DoggieGeometry SwiftPlayground.swift
[707/731] Compiling DoggieGeometry Arithmetic.swift
[708/731] Compiling DoggieGeometry Bezier.swift
[709/731] Compiling DoggieGeometry BezierArc.swift
[710/731] 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]))
[711/731] 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]))
[712/731] 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]))
[713/731] 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]))
[714/731] 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]))
[715/731] Compiling DoggieGeometry PathBuilder.swift
[716/731] Compiling DoggieGeometry ShapeRegion.swift
[717/731] Compiling DoggieGeometry ShapeRegionOp.swift
[718/731] Compiling DoggieGeometry ShapeRegionWinding.swift
[719/731] Compiling DoggieGeometry PathStroke.swift
[720/731] Compiling DoggieGeometry SVGPathCoder.swift
[721/731] Compiling DoggieGeometry Shape.swift
[722/731] Compiling DoggieGeometry ShapeSegment.swift
[723/731] Compiling DoggieGeometry BezierOffset.swift
[724/731] Compiling DoggieGeometry BezierProtocol.swift
[725/731] Compiling DoggieGeometry CubicBezier.swift
[726/731] Compiling DoggieGeometry CubicBezierPatch.swift
[727/731] Compiling DoggieGeometry Extension.swift
[728/731] Compiling DoggieGeometry EdgeInsets.swift
[729/731] Compiling DoggieGeometry Ellipse.swift
[730/731] Compiling DoggieGeometry Geometry.swift
[731/731] Emitting module DoggieGeometry
[732/948] Compiling DoggieGraphics AppleExported.swift
[733/948] Compiling DoggieGraphics CGColor.swift
[734/948] Compiling DoggieGraphics CGColorSpace.swift
[735/948] Compiling DoggieGraphics CGContext.swift
[736/948] Compiling DoggieGraphics CGFont.swift
[737/948] Compiling DoggieGraphics CGGradient.swift
[738/948] Compiling DoggieGraphics CGPattern.swift
[739/948] Compiling DoggieGraphics CGShading.swift
[740/948] Compiling DoggieGraphics CoreText.swift
[741/948] Compiling DoggieGraphics CGImage.swift
[742/948] Compiling DoggieGraphics CVPixelFormat.swift
[743/948] Compiling DoggieGraphics CoreVideo.swift
[744/948] Compiling DoggieGraphics IOSurface.swift
[745/948] Compiling DoggieGraphics NSImage.swift
[746/948] Compiling DoggieGraphics UIImage.swift
[747/948] Compiling DoggieGraphics AVDepthData.swift
[748/948] Compiling DoggieGraphics AVPortraitEffectsMatte.swift
[749/948] Compiling DoggieGraphics CGAnimatedImage.swift
[750/948] Compiling DoggieGraphics CGImageDestination.swift
[751/948] Compiling DoggieGraphics CGImageRep.swift
[752/948] Compiling DoggieGraphics CGImageSource.swift
[753/948] Compiling DoggieGraphics Metal.swift
[754/948] Compiling DoggieGraphics CIContext.swift
[755/948] Compiling DoggieGraphics CIContextPool.swift
[756/972] Compiling DoggieGraphics TIFFDecoder.swift
[757/972] Compiling DoggieGraphics WEBPDecoder.swift
[758/972] Compiling DoggieGraphics BMPEncoder.swift
[759/972] Compiling DoggieGraphics ImageRepEncoder.swift
[760/972] Compiling DoggieGraphics JPEGEncoder.swift
[761/972] Compiling DoggieGraphics PNGEncoder.swift
[762/972] Compiling DoggieGraphics TIFFEncoder.swift
[763/972] Compiling DoggieGraphics WEBPEncoder.swift
[764/972] Compiling DoggieGraphics ImageRep.swift
[765/972] Compiling DoggieGraphics FastDecode.swift
[766/972] Compiling DoggieGraphics _fast_decode_alpha_first.swift
[767/972] Compiling DoggieGraphics _fast_decode_alpha_last.swift
[768/972] Compiling DoggieGraphics _fast_decode_alpha_none.swift
[769/972] Compiling DoggieGraphics _fast_decode_float.swift
[770/972] Compiling DoggieGraphics _fast_decode_pixel.swift
[771/972] Compiling DoggieGraphics RawBitmap.swift
[772/972] Compiling DoggieGraphics SlowDecode.swift
[773/972] Compiling DoggieGraphics _aligned_channel.swift
[774/972] Compiling DoggieGraphics _aligned_float_channel.swift
[775/972] Compiling DoggieGraphics _channel_to_double.swift
[776/972] Compiling DoggieGraphics _float_channel.swift
[777/972] Compiling DoggieGraphics _unsigned_aligned_channel.swift
[778/972] Compiling DoggieGraphics _unsigned_channel.swift
[779/972] Compiling DoggieGraphics _unsigned_pixel.swift
[780/996] Compiling DoggieGraphics AvailableColorSpaces.swift
[781/996] Compiling DoggieGraphics AvailableFonts.swift
[782/996] Compiling DoggieGraphics Prespecialize.swift
[783/996] Compiling DoggieGraphics SVGContext.swift
[784/996] Compiling DoggieGraphics SVGBlendEffect.swift
[785/996] Compiling DoggieGraphics SVGColorMatrixEffect.swift
[786/996] Compiling DoggieGraphics SVGComponentTransferEffect.swift
[787/996] Compiling DoggieGraphics SVGConvolveMatrixEffect.swift
[788/996] Compiling DoggieGraphics SVGDisplacementMapEffect.swift
[789/996] Compiling DoggieGraphics SVGDropShadowEffect.swift
[790/996] Compiling DoggieGraphics SVGEffect.swift
[791/996] Compiling DoggieGraphics SVGFloodEffect.swift
[792/996] Compiling DoggieGraphics SVGGaussianBlurEffect.swift
[793/996] Compiling DoggieGraphics SVGHueRotateEffect.swift
[794/996] Compiling DoggieGraphics SVGImageEffect.swift
[795/996] Compiling DoggieGraphics SVGLightingEffect.swift
[796/996] Compiling DoggieGraphics SVGLuminanceToAlphaEffect.swift
[797/996] Compiling DoggieGraphics SVGMergeEffect.swift
[798/996] Compiling DoggieGraphics SVGMorphologyEffect.swift
[799/996] Compiling DoggieGraphics SVGOffsetEffect.swift
[800/996] Compiling DoggieGraphics SVGSaturateEffect.swift
[801/996] Compiling DoggieGraphics SVGTileEffect.swift
[802/996] Compiling DoggieGraphics SVGTurbulenceEffect.swift
[803/996] Compiling DoggieGraphics FixedNumber.swift
[804/996] Compiling DoggieGraphics FloatComponentPixel.swift
[805/996] Compiling DoggieGraphics Gray16ColorPixel.swift
[806/996] Compiling DoggieGraphics Gray32ColorPixel.swift
[807/996] Compiling DoggieGraphics GrayColorPixel.swift
[808/996] Compiling DoggieGraphics ABGR32ColorPixel.swift
[809/996] Compiling DoggieGraphics ARGB32ColorPixel.swift
[810/996] Compiling DoggieGraphics ARGB64ColorPixel.swift
[811/996] Compiling DoggieGraphics BGRA32ColorPixel.swift
[812/996] Compiling DoggieGraphics RGBA32ColorPixel.swift
[813/996] Compiling DoggieGraphics RGBA64ColorPixel.swift
[814/996] Compiling DoggieGraphics RGBColorPixel.swift
[815/996] Compiling DoggieGraphics AnyColorSpace.swift
[816/996] Compiling DoggieGraphics ChromaticAdaptationAlgorithm.swift
[817/996] Compiling DoggieGraphics ColorSpace.swift
[818/996] Compiling DoggieGraphics CIELabColorSpace.swift
[819/996] Compiling DoggieGraphics CIELuvColorSpace.swift
[820/996] Compiling DoggieGraphics CIEXYZColorSpace.swift
[821/996] Compiling DoggieGraphics CIEYxyColorSpace.swift
[822/996] Compiling DoggieGraphics CalibratedGrayColorSpace.swift
[823/996] Compiling DoggieGraphics AdobeRGB.swift
[824/996] Compiling DoggieGraphics CalibratedRGBColorSpace.swift
[825/996] Compiling DoggieGraphics displayP3.swift
[826/996] Compiling DoggieGraphics sRGB.swift
[827/996] Compiling DoggieGraphics ColorSpaceBaseProtocol.swift
[828/996] Compiling DoggieGraphics Resolution.swift
[829/996] Compiling DoggieGraphics StencilTexture.swift
[830/996] Compiling DoggieGraphics Texture.swift
[831/996] Compiling DoggieGraphics TextureProtocol.swift
[832/996] Compiling DoggieGraphics GrayPixelDecoder.swift
[833/996] Compiling DoggieGraphics PNGChunk.swift
[834/996] Compiling DoggieGraphics PNGFilter0.swift
[835/996] Compiling DoggieGraphics PNGInterlace.swift
[836/996] Compiling DoggieGraphics PNGRegion.swift
[837/996] Compiling DoggieGraphics RGBPixelDecoder.swift
[838/996] Compiling DoggieGraphics TIFFCompression.swift
[839/996] Compiling DoggieGraphics TIFFLZWCompression.swift
[840/996] Compiling DoggieGraphics TIFFPackBitsCompression.swift
[841/996] Compiling DoggieGraphics TIFFEncodablePixel.swift
[842/996] Compiling DoggieGraphics TIFFPrediction.swift
[843/996] Compiling DoggieGraphics TIFFRawRepresentable.swift
[844/996] Compiling DoggieGraphics AnimatedImage.swift
[845/996] Compiling DoggieGraphics PNGAnimatedEncoder.swift
[846/996] Compiling DoggieGraphics WEBPAnimatedEncoder.swift
[847/996] Compiling DoggieGraphics APNGDecoder.swift
[848/996] Compiling DoggieGraphics BMPDecoder.swift
[849/996] Compiling DoggieGraphics ImageRepDecoder.swift
[850/996] Compiling DoggieGraphics JPEGDecoder.swift
[851/996] Compiling DoggieGraphics PNGDecoder.swift
[852/996] Compiling DoggieGraphics SVGNoiseGenerator.swift
[853/996] Compiling DoggieGraphics SimplexNoise.swift
[854/996] Compiling DoggieGraphics PDFContext.swift
[855/996] Compiling DoggieGraphics PDFContextEncoder.swift
[856/996] Compiling DoggieGraphics PDFContextImage.swift
[857/996] Compiling DoggieGraphics PDFContextPage.swift
[858/996] Compiling DoggieGraphics PDFDecoder.swift
[859/996] Compiling DoggieGraphics PDFDocument.swift
[860/996] Compiling DoggieGraphics ASCII85Filter.swift
[861/996] Compiling DoggieGraphics ASCIIHexFilter.swift
[862/996] Compiling DoggieGraphics PDFFilter.swift
[863/996] Compiling DoggieGraphics PDFName.swift
[864/996] Compiling DoggieGraphics PDFNumber.swift
[865/996] Compiling DoggieGraphics PDFObject.swift
[866/996] Compiling DoggieGraphics PDFPage.swift
[867/996] Compiling DoggieGraphics PDFBitmap.swift
[868/996] Compiling DoggieGraphics PDFColorSpace.swift
[869/996] Compiling DoggieGraphics PDFCommand.swift
[870/996] Compiling DoggieGraphics PDFDrawPage.swift
[871/996] Compiling DoggieGraphics PDFFunction.swift
[872/996] Compiling DoggieGraphics PDFRenderer.swift
[873/996] Compiling DoggieGraphics PDFStream.swift
[874/996] Compiling DoggieGraphics PDFString.swift
[875/996] Compiling DoggieGraphics PDFXref.swift
[876/996] 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)
[877/996] 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)
[878/996] 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)
[879/996] 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)
[880/996] 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)
[881/996] 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)
[882/996] 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)
[883/996] 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)
[884/996] 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)
[885/996] 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)
[886/996] 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)
[887/996] 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)
[888/996] 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)
[889/996] 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)
[890/996] 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)
[891/996] 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)
[892/996] 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)
[893/996] 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)
[894/996] 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)
[895/996] 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)
[896/996] 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)
[897/996] 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)
[898/996] 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)
[899/996] 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)
[900/996] Compiling DoggieGraphics Stroke.swift
[901/996] Compiling DoggieGraphics Exported.swift
[902/996] Compiling DoggieGraphics CFF2Decoder.swift
[903/996] Compiling DoggieGraphics CFF2INDEX.swift
[904/996] Compiling DoggieGraphics CFFCharStrings.swift
[905/996] Compiling DoggieGraphics CFFDICT.swift
[906/996] Compiling DoggieGraphics CFFDecoder.swift
[907/996] Compiling DoggieGraphics CFFEncoding.swift
[908/996] Compiling DoggieGraphics CFFFDSelect.swift
[909/996] Compiling DoggieGraphics CFFFontFace.swift
[910/996] Compiling DoggieGraphics CFFINDEX.swift
[911/996] Compiling DoggieGraphics FontDecoder.swift
[912/996] Compiling DoggieGraphics OpenTypeDecoder.swift
[913/996] Compiling DoggieGraphics AATStateTable.swift
[914/996] Compiling DoggieGraphics OTFFeatureList.swift
[915/996] Compiling DoggieGraphics OTFGDEF.swift
[916/996] Compiling DoggieGraphics OTFGPOS.swift
[917/996] Compiling DoggieGraphics OTFGSUB.swift
[918/996] Compiling DoggieGraphics OTFLookupList.swift
[919/996] Compiling DoggieGraphics OTFScriptList.swift
[920/996] Compiling DoggieGraphics SFNTCMAP.swift
[921/996] Compiling DoggieGraphics SFNTFEAT.swift
[922/996] Compiling DoggieGraphics SFNTFontFace.swift
[923/996] Compiling DoggieGraphics SFNTGLYF.swift
[924/996] Compiling DoggieGraphics ICC Creator.swift
[925/996] Compiling DoggieGraphics ICCColorSpace.swift
[926/996] Compiling DoggieGraphics iccProfile.swift
[927/996] Compiling DoggieGraphics iccCurve.swift
[928/996] Compiling DoggieGraphics iccLUTTransform.swift
[929/996] Compiling DoggieGraphics iccMultiLocalizedUnicode.swift
[930/996] Compiling DoggieGraphics iccNamedColor.swift
[931/996] Compiling DoggieGraphics iccTagData.swift
[932/996] Compiling DoggieGraphics iccTextDescription.swift
[933/996] Compiling DoggieGraphics iccTransform.swift
[934/996] Compiling DoggieGraphics iccDateTimeNumber.swift
[935/996] Compiling DoggieGraphics iccMatrix.swift
[936/996] Compiling DoggieGraphics iccType.swift
[937/996] Compiling DoggieGraphics iccXYZNumber.swift
[938/996] Compiling DoggieGraphics LinearToneColorSpace.swift
[939/996] Compiling DoggieGraphics PredefinedColorSpace.swift
[940/996] Compiling DoggieGraphics WrappedColorSpace.swift
[941/996] Compiling DoggieGraphics ColorSpaceProtocol.swift
[942/996] Compiling DoggieGraphics Illuminant.swift
[943/996] Compiling DoggieGraphics RenderingIntent.swift
[944/996] Compiling DoggieGraphics DrawableContext.swift
[945/996] Compiling DoggieGraphics Gradient.swift
[946/996] Compiling DoggieGraphics MeshGradient.swift
[947/996] Compiling DoggieGraphics Pattern.swift
[948/996] Compiling DoggieGraphics SFNTHEAD.swift
[949/996] Compiling DoggieGraphics SFNTHHEA.swift
[950/996] Compiling DoggieGraphics SFNTLTAG.swift
[951/996] Compiling DoggieGraphics SFNTMAXP.swift
[952/996] Compiling DoggieGraphics SFNTMORX.swift
[953/996] Compiling DoggieGraphics SFNTNAME.swift
[954/996] Compiling DoggieGraphics SFNTOS2.swift
[955/996] Compiling DoggieGraphics SFNTPOST.swift
[956/996] Compiling DoggieGraphics SFNTPlatform.swift
[957/996] Compiling DoggieGraphics SFNTSBIX.swift
[958/996] Compiling DoggieGraphics SFNTVHEA.swift
[959/996] Compiling DoggieGraphics TTCDecoder.swift
[960/996] Compiling DoggieGraphics WOFFDecoder.swift
[961/996] Compiling DoggieGraphics FontFaceEncoder.swift
[962/996] Compiling DoggieGraphics OTFEncoder.swift
[963/996] Compiling DoggieGraphics WOFFEncoder.swift
[964/996] Compiling DoggieGraphics Font.swift
[965/996] Compiling DoggieGraphics FontCollection.swift
[966/996] Compiling DoggieGraphics AnyImage.swift
[967/996] Compiling DoggieGraphics Image.swift
[968/996] Compiling DoggieGraphics ImageOrientation.swift
[969/996] Compiling DoggieGraphics ImageProtocol.swift
[970/996] Compiling DoggieGraphics RawPixelProtocol.swift
[971/996] Compiling DoggieGraphics Resampling.swift
[972/996] Compiling DoggieGraphics DrawGradient.swift
[973/996] Compiling DoggieGraphics DrawImage.swift
[974/996] Compiling DoggieGraphics DrawMeshGradient.swift
[975/996] Compiling DoggieGraphics DrawPattern.swift
[976/996] Compiling DoggieGraphics DrawShadow.swift
[977/996] Compiling DoggieGraphics DrawShape.swift
[978/996] Compiling DoggieGraphics ImageContext.swift
[979/996] Compiling DoggieGraphics ImageContextExtension.swift
[980/996] Compiling DoggieGraphics PixelBlender.swift
[981/996] Compiling DoggieGraphics Rasterizer.swift
[982/996] Compiling DoggieGraphics Rendering.swift
[983/996] Compiling DoggieGraphics SetClip.swift
[984/996] Compiling DoggieGraphics Stencil.swift
[985/996] Compiling DoggieGraphics BayerDithering.swift
[986/996] Compiling DoggieGraphics BilateralFilter.swift
[987/996] Compiling DoggieGraphics ColorSeparation.swift
[988/996] Compiling DoggieGraphics DifferenceOfGaussian.swift
[989/996] Compiling DoggieGraphics DisplacementMap.swift
[990/996] Compiling DoggieGraphics GaussianBlur.swift
[991/996] Compiling DoggieGraphics ImageConvolution.swift
[992/996] Compiling DoggieGraphics LaplacianOfGaussian.swift
[993/996] Compiling DoggieGraphics SVGTurbulence.swift
[994/996] Compiling DoggieGraphics Underpainting.swift
[995/996] Compiling DoggieGraphics kMeansClustering.swift
[996/996] 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)
[997/1022] Compiling DoggieGPU GPContext.swift
[998/1022] Compiling DoggieGPU GPContextBase.swift
[999/1022] Compiling DoggieGPU GPContextExtension.swift
[1000/1022] Compiling DoggieGPU MTLDevice.swift
[1001/1022] Compiling DoggieGPU Packed.swift
[1002/1022] Compiling DoggieGPU Exported.swift
[1003/1022] Compiling DoggieGPU CGContextProcessorKernel.swift
[1004/1022] Compiling DoggieGPU CGPathProcessorKernel.swift
[1005/1024] Compiling DoggieGPU SIMD.swift
[1006/1024] Compiling DoggieGPU resource_bundle_accessor.swift
[1007/1024] Compiling DoggieGPU PalettizeKernel.swift
[1008/1024] Compiling DoggieGPU SVGComponentTransferKernel.swift
[1009/1024] Compiling DoggieGPU SVGConvolveKernel.swift
[1010/1024] Compiling DoggieGPU ShaderLoader.swift
[1011/1024] Compiling DoggieGPU WrapTileKernel.swift
[1012/1024] Compiling DoggieGPU kMeansClusteringKernel.swift
[1013/1024] Compiling DoggieGPU ConvolveKernel.swift
[1014/1024] Compiling DoggieGPU CoreImage.swift
[1015/1024] Compiling DoggieGPU MorphologyKernel.swift
[1016/1024] Compiling DoggieGPU SVGDisplacementMapKernel.swift
[1017/1024] Compiling DoggieGPU SVGLightingKernel.swift
[1018/1024] Compiling DoggieGPU SVGTurbulenceKernel.swift
[1019/1024] Compiling DoggieGPU BilateralFilter.swift
[1020/1024] Compiling DoggieGPU CIImage.swift
[1021/1024] Compiling DoggieGPU CIVector.swift
[1022/1024] Emitting module DoggieGPU
[1023/1024] Compiling DoggieGPU GPContextPattern.swift
[1024/1024] Compiling DoggieGPU MeshGradientKernel.swift
[1025/1026] Compiling Doggie Exported.swift
[1026/1026] Emitting module Doggie
Build complete! (74.07s)
Fetching https://github.com/SusanDoggie/libjpeg
Fetching https://github.com/apple/swift-collections
Fetching https://github.com/SusanDoggie/libwebp
Fetching https://github.com/SusanDoggie/Float16
Fetching https://github.com/SusanDoggie/brotli
Fetching https://github.com/apple/swift-algorithms
Fetching https://github.com/apple/swift-numerics
[4/303] Fetching libjpeg
[156/613] Fetching libjpeg, float16
[370/6370] Fetching libjpeg, float16, swift-numerics
[428/6440] Fetching libjpeg, float16, swift-numerics, brotli
[484/6518] Fetching libjpeg, float16, swift-numerics, brotli, libwebp
[604/12477] Fetching libjpeg, float16, swift-numerics, brotli, libwebp, swift-algorithms
[1361/29117] Fetching libjpeg, float16, swift-numerics, brotli, libwebp, swift-algorithms, swift-collections
Fetched https://github.com/SusanDoggie/libjpeg from cache (0.89s)
[2341/28814] Fetching float16, swift-numerics, brotli, libwebp, swift-algorithms, swift-collections
Fetched https://github.com/apple/swift-algorithms from cache (1.99s)
Fetched https://github.com/SusanDoggie/libwebp from cache (1.99s)
Fetched https://github.com/SusanDoggie/Float16 from cache (1.99s)
Fetched https://github.com/apple/swift-numerics from cache (1.99s)
Fetched https://github.com/SusanDoggie/brotli from cache (1.99s)
Fetched https://github.com/apple/swift-collections from cache (1.99s)
Computing version for https://github.com/SusanDoggie/Float16
Computed https://github.com/SusanDoggie/Float16 at 1.1.1 (2.57s)
Computing version for https://github.com/SusanDoggie/libjpeg
Computed https://github.com/SusanDoggie/libjpeg at 1.0.3 (0.50s)
Computing version for https://github.com/SusanDoggie/libwebp
Computed https://github.com/SusanDoggie/libwebp at 1.0.3 (0.54s)
Computing version for https://github.com/SusanDoggie/brotli
Computed https://github.com/SusanDoggie/brotli at 1.0.3 (0.53s)
Computing version for https://github.com/apple/swift-algorithms
Computed https://github.com/apple/swift-algorithms at 1.2.1 (0.50s)
Computing version for https://github.com/apple/swift-numerics
Computed https://github.com/apple/swift-numerics at 1.0.3 (0.51s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.2.0 (0.49s)
Creating working copy for https://github.com/SusanDoggie/brotli
Working copy of https://github.com/SusanDoggie/brotli resolved at 1.0.3
Creating working copy for https://github.com/SusanDoggie/libjpeg
Working copy of https://github.com/SusanDoggie/libjpeg resolved at 1.0.3
Creating working copy for https://github.com/SusanDoggie/libwebp
Working copy of https://github.com/SusanDoggie/libwebp resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-algorithms
Working copy of https://github.com/apple/swift-algorithms resolved at 1.2.1
Creating working copy for https://github.com/SusanDoggie/Float16
Working copy of https://github.com/SusanDoggie/Float16 resolved at 1.1.1
Creating working copy for https://github.com/apple/swift-collections
Working copy of https://github.com/apple/swift-collections resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-numerics
Working copy of https://github.com/apple/swift-numerics resolved at 1.0.3
Build complete.
{
"dependencies" : [
{
"identity" : "swift-numerics",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-numerics"
},
{
"identity" : "swift-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-algorithms"
},
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections"
},
{
"identity" : "float16",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SusanDoggie/Float16"
},
{
"identity" : "brotli",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SusanDoggie/brotli"
},
{
"identity" : "libwebp",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SusanDoggie/libwebp"
},
{
"identity" : "libjpeg",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/SusanDoggie/libjpeg"
}
],
"manifest_display_name" : "Doggie",
"name" : "Doggie",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "DoggieCore",
"targets" : [
"DoggieCore"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "DoggieMath",
"targets" : [
"DoggieMath"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "DoggieGeometry",
"targets" : [
"DoggieGeometry"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "DoggieGraphics",
"targets" : [
"DoggieGraphics"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "DoggieGPU",
"targets" : [
"DoggieGPU"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "Doggie",
"targets" : [
"Doggie"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "zlib_c",
"module_type" : "ClangTarget",
"name" : "zlib_c",
"path" : "Sources/zlib_c",
"product_memberships" : [
"DoggieCore",
"DoggieMath",
"DoggieGeometry",
"DoggieGraphics",
"DoggieGPU",
"Doggie"
],
"sources" : [
"empty.c"
],
"type" : "library"
},
{
"c99name" : "DoggieTests",
"module_type" : "SwiftTarget",
"name" : "DoggieTests",
"path" : "Tests/DoggieTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/DoggieTests/images",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"ArithmeticTest.swift",
"BrotliTest.swift",
"CollectionTest.swift",
"ColorSpaceTest.swift",
"ColorTest.swift",
"ConcurrencyTest.swift",
"FontTest.swift",
"FourierSpeedTest.swift",
"FourierTest.swift",
"GeometryTest.swift",
"ImageCodecTest.swift",
"ImageContextTest.swift",
"ImageTest.swift",
"JsonTest.swift",
"LayoutTest.swift",
"MappedBufferTest.swift",
"MathTest.swift",
"PDFContextTest.swift",
"PolynomialTest.swift",
"ShapeRegionTest.swift",
"XMLTest.swift",
"ZlibTest.swift"
],
"target_dependencies" : [
"Doggie"
],
"type" : "test"
},
{
"c99name" : "DoggieMath",
"module_type" : "SwiftTarget",
"name" : "DoggieMath",
"path" : "Sources/DoggieMath",
"product_memberships" : [
"DoggieMath",
"DoggieGeometry",
"DoggieGraphics",
"DoggieGPU",
"Doggie"
],
"sources" : [
"Accelerate/CircularConvolve.swift",
"Accelerate/CircularConvolve2D.swift",
"Accelerate/CooleyTukey2D.swift",
"Accelerate/DirectConvolve.swift",
"Accelerate/LinearAlgebra.swift",
"Accelerate/Move.swift",
"Accelerate/OverlapAddConvolve.swift",
"Accelerate/Radix2CooleyTukey/HalfInverseRadix2CooleyTukey.swift",
"Accelerate/Radix2CooleyTukey/HalfRadix2CooleyTukey.swift",
"Accelerate/Radix2CooleyTukey/InverseRadix2CooleyTukey.swift",
"Accelerate/Radix2CooleyTukey/Radix2CooleyTukey.swift",
"Accelerate/Radix2CooleyTukey/cooleytukey_16.swift",
"Accelerate/Radix2CooleyTukey/cooleytukey_2.swift",
"Accelerate/Radix2CooleyTukey/cooleytukey_4.swift",
"Accelerate/Radix2CooleyTukey/cooleytukey_8.swift",
"Accelerate/Radix2CooleyTukey/half_cooleytukey_16.swift",
"Accelerate/Radix2CooleyTukey/half_cooleytukey_2.swift",
"Accelerate/Radix2CooleyTukey/half_cooleytukey_4.swift",
"Accelerate/Radix2CooleyTukey/half_cooleytukey_8.swift",
"Accelerate/Wrapper.swift",
"Arithmetic.swift",
"Complex.swift",
"Exported.swift",
"Extension.swift",
"Fourier.swift",
"Maths.swift",
"Polynomial.swift",
"Rational.swift",
"SafeFunction.swift"
],
"target_dependencies" : [
"DoggieCore"
],
"type" : "library"
},
{
"c99name" : "DoggieGraphics",
"module_type" : "SwiftTarget",
"name" : "DoggieGraphics",
"path" : "Sources/DoggieGraphics",
"product_dependencies" : [
"libwebp",
"libjpeg"
],
"product_memberships" : [
"DoggieGraphics",
"DoggieGPU",
"Doggie"
],
"sources" : [
"ApplePlatform/AppleExported.swift",
"ApplePlatform/Graphic/CGColor.swift",
"ApplePlatform/Graphic/CGColorSpace.swift",
"ApplePlatform/Graphic/CGContext.swift",
"ApplePlatform/Graphic/CGFont.swift",
"ApplePlatform/Graphic/CGGradient.swift",
"ApplePlatform/Graphic/CGPattern.swift",
"ApplePlatform/Graphic/CGShading.swift",
"ApplePlatform/Graphic/CoreText.swift",
"ApplePlatform/Image/CGImage.swift",
"ApplePlatform/Image/CVPixelFormat.swift",
"ApplePlatform/Image/CoreVideo.swift",
"ApplePlatform/Image/IOSurface.swift",
"ApplePlatform/Image/NSImage.swift",
"ApplePlatform/Image/UIImage.swift",
"ApplePlatform/ImageIO/AVDepthData.swift",
"ApplePlatform/ImageIO/AVPortraitEffectsMatte.swift",
"ApplePlatform/ImageIO/CGAnimatedImage.swift",
"ApplePlatform/ImageIO/CGImageDestination.swift",
"ApplePlatform/ImageIO/CGImageRep.swift",
"ApplePlatform/ImageIO/CGImageSource.swift",
"ApplePlatform/Metal.swift",
"ApplePlatform/Performance/CIContext.swift",
"ApplePlatform/Performance/CIContextPool.swift",
"ApplePlatform/SwiftPlayground.swift",
"Color/AnyColor.swift",
"Color/Color.swift",
"Color/ColorProtocol.swift",
"Color/PredefinedColor.swift",
"ColorModel/ColorBlendKernel.swift",
"ColorModel/ColorBlendMode.swift",
"ColorModel/ColorModel.swift",
"ColorModel/Model/CMYColorModel.swift",
"ColorModel/Model/CMYKColorModel.swift",
"ColorModel/Model/DeviceNColorModel.swift",
"ColorModel/Model/GrayColorModel.swift",
"ColorModel/Model/LabColorModel.swift",
"ColorModel/Model/LuvColorModel.swift",
"ColorModel/Model/RGBColorModel.swift",
"ColorModel/Model/XYZColorModel.swift",
"ColorModel/Model/YCbCrColorModel.swift",
"ColorModel/Model/YxyColorModel.swift",
"ColorPixel/ColorCompositingKernel.swift",
"ColorPixel/ColorCompositingMode.swift",
"ColorPixel/ColorPixel.swift",
"ColorPixel/FloatComponentPixel/Float16ColorPixel.swift",
"ColorPixel/FloatComponentPixel/Float32ColorPixel.swift",
"ColorPixel/FloatComponentPixel/Float64ColorPixel.swift",
"ColorPixel/FloatComponentPixel/FloatComponentPixel.swift",
"ColorPixel/Gray/Gray16ColorPixel.swift",
"ColorPixel/Gray/Gray32ColorPixel.swift",
"ColorPixel/Gray/GrayColorPixel.swift",
"ColorPixel/RGB/ABGR32ColorPixel.swift",
"ColorPixel/RGB/ARGB32ColorPixel.swift",
"ColorPixel/RGB/ARGB64ColorPixel.swift",
"ColorPixel/RGB/BGRA32ColorPixel.swift",
"ColorPixel/RGB/RGBA32ColorPixel.swift",
"ColorPixel/RGB/RGBA64ColorPixel.swift",
"ColorPixel/RGB/RGBColorPixel.swift",
"ColorSpace/AnyColorSpace.swift",
"ColorSpace/ChromaticAdaptationAlgorithm.swift",
"ColorSpace/ColorSpace.swift",
"ColorSpace/ColorSpaceBase/CIEColorSpace/CIELabColorSpace.swift",
"ColorSpace/ColorSpaceBase/CIEColorSpace/CIELuvColorSpace.swift",
"ColorSpace/ColorSpaceBase/CIEColorSpace/CIEXYZColorSpace.swift",
"ColorSpace/ColorSpaceBase/CIEColorSpace/CIEYxyColorSpace.swift",
"ColorSpace/ColorSpaceBase/CalibratedGrayColorSpace/CalibratedGrayColorSpace.swift",
"ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/AdobeRGB.swift",
"ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/CalibratedRGBColorSpace.swift",
"ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/displayP3.swift",
"ColorSpace/ColorSpaceBase/CalibratedRGBColorSpace/sRGB.swift",
"ColorSpace/ColorSpaceBase/ColorSpaceBaseProtocol.swift",
"ColorSpace/ColorSpaceBase/ICC/ICC Creator.swift",
"ColorSpace/ColorSpaceBase/ICC/ICCColorSpace.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccProfile.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccCurve.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccLUTTransform.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccMultiLocalizedUnicode.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccNamedColor.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTagData.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTextDescription.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccTagData/iccTransform.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccDateTimeNumber.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccMatrix.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccType.swift",
"ColorSpace/ColorSpaceBase/ICC/iccProfile/iccType/iccXYZNumber.swift",
"ColorSpace/ColorSpaceBase/LinearToneColorSpace.swift",
"ColorSpace/ColorSpaceBase/PredefinedColorSpace.swift",
"ColorSpace/ColorSpaceBase/WrappedColorSpace.swift",
"ColorSpace/ColorSpaceProtocol.swift",
"ColorSpace/Illuminant.swift",
"ColorSpace/RenderingIntent.swift",
"DrawableContext/DrawableContext.swift",
"DrawableContext/Gradient.swift",
"DrawableContext/MeshGradient.swift",
"DrawableContext/Pattern.swift",
"DrawableContext/Stroke.swift",
"Exported.swift",
"Font/Decoder/CFF2Decoder/CFF2Decoder.swift",
"Font/Decoder/CFF2Decoder/CFF2INDEX.swift",
"Font/Decoder/CFFDecoder/CFFCharStrings.swift",
"Font/Decoder/CFFDecoder/CFFDICT.swift",
"Font/Decoder/CFFDecoder/CFFDecoder.swift",
"Font/Decoder/CFFDecoder/CFFEncoding.swift",
"Font/Decoder/CFFDecoder/CFFFDSelect.swift",
"Font/Decoder/CFFDecoder/CFFFontFace.swift",
"Font/Decoder/CFFDecoder/CFFINDEX.swift",
"Font/Decoder/FontDecoder.swift",
"Font/Decoder/OpenTypeDecoder.swift",
"Font/Decoder/SFNTFontFace/AATStateTable.swift",
"Font/Decoder/SFNTFontFace/OTFFeatureList.swift",
"Font/Decoder/SFNTFontFace/OTFGDEF.swift",
"Font/Decoder/SFNTFontFace/OTFGPOS.swift",
"Font/Decoder/SFNTFontFace/OTFGSUB.swift",
"Font/Decoder/SFNTFontFace/OTFLookupList.swift",
"Font/Decoder/SFNTFontFace/OTFScriptList.swift",
"Font/Decoder/SFNTFontFace/SFNTCMAP.swift",
"Font/Decoder/SFNTFontFace/SFNTFEAT.swift",
"Font/Decoder/SFNTFontFace/SFNTFontFace.swift",
"Font/Decoder/SFNTFontFace/SFNTGLYF.swift",
"Font/Decoder/SFNTFontFace/SFNTHEAD.swift",
"Font/Decoder/SFNTFontFace/SFNTHHEA.swift",
"Font/Decoder/SFNTFontFace/SFNTLTAG.swift",
"Font/Decoder/SFNTFontFace/SFNTMAXP.swift",
"Font/Decoder/SFNTFontFace/SFNTMORX.swift",
"Font/Decoder/SFNTFontFace/SFNTNAME.swift",
"Font/Decoder/SFNTFontFace/SFNTOS2.swift",
"Font/Decoder/SFNTFontFace/SFNTPOST.swift",
"Font/Decoder/SFNTFontFace/SFNTPlatform.swift",
"Font/Decoder/SFNTFontFace/SFNTSBIX.swift",
"Font/Decoder/SFNTFontFace/SFNTVHEA.swift",
"Font/Decoder/TTCDecoder.swift",
"Font/Decoder/WOFFDecoder.swift",
"Font/Encoder/FontFaceEncoder.swift",
"Font/Encoder/OTFEncoder.swift",
"Font/Encoder/WOFFEncoder.swift",
"Font/Font.swift",
"Font/FontCollection.swift",
"Image/AnyImage.swift",
"Image/Image.swift",
"Image/ImageOrientation.swift",
"Image/ImageProtocol.swift",
"Image/RawPixelProtocol.swift",
"Image/Resampling.swift",
"Image/Resolution.swift",
"Image/StencilTexture.swift",
"Image/Texture.swift",
"Image/TextureProtocol.swift",
"ImageCodec/Algorithm/GrayPixelDecoder.swift",
"ImageCodec/Algorithm/PNG/PNGChunk.swift",
"ImageCodec/Algorithm/PNG/PNGFilter0.swift",
"ImageCodec/Algorithm/PNG/PNGInterlace.swift",
"ImageCodec/Algorithm/PNG/PNGRegion.swift",
"ImageCodec/Algorithm/RGBPixelDecoder.swift",
"ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFCompression.swift",
"ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFLZWCompression.swift",
"ImageCodec/Algorithm/TIFF/TIFFCompression/TIFFPackBitsCompression.swift",
"ImageCodec/Algorithm/TIFF/TIFFEncodablePixel.swift",
"ImageCodec/Algorithm/TIFF/TIFFPrediction.swift",
"ImageCodec/Algorithm/TIFF/TIFFRawRepresentable.swift",
"ImageCodec/AnimatedEncoder/AnimatedImage.swift",
"ImageCodec/AnimatedEncoder/PNGAnimatedEncoder.swift",
"ImageCodec/AnimatedEncoder/WEBPAnimatedEncoder.swift",
"ImageCodec/Decoder/APNGDecoder.swift",
"ImageCodec/Decoder/BMPDecoder.swift",
"ImageCodec/Decoder/ImageRepDecoder.swift",
"ImageCodec/Decoder/JPEGDecoder.swift",
"ImageCodec/Decoder/PNGDecoder.swift",
"ImageCodec/Decoder/TIFFDecoder.swift",
"ImageCodec/Decoder/WEBPDecoder.swift",
"ImageCodec/Encoder/BMPEncoder.swift",
"ImageCodec/Encoder/ImageRepEncoder.swift",
"ImageCodec/Encoder/JPEGEncoder.swift",
"ImageCodec/Encoder/PNGEncoder.swift",
"ImageCodec/Encoder/TIFFEncoder.swift",
"ImageCodec/Encoder/WEBPEncoder.swift",
"ImageCodec/ImageRep.swift",
"ImageCodec/RawBitmap/FastDecode.swift",
"ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_first.swift",
"ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_last.swift",
"ImageCodec/RawBitmap/FastDecode/_fast_decode_alpha_none.swift",
"ImageCodec/RawBitmap/FastDecode/_fast_decode_float.swift",
"ImageCodec/RawBitmap/FastDecode/_fast_decode_pixel.swift",
"ImageCodec/RawBitmap/RawBitmap.swift",
"ImageCodec/RawBitmap/SlowDecode.swift",
"ImageCodec/RawBitmap/SlowDecode/_aligned_channel.swift",
"ImageCodec/RawBitmap/SlowDecode/_aligned_float_channel.swift",
"ImageCodec/RawBitmap/SlowDecode/_channel_to_double.swift",
"ImageCodec/RawBitmap/SlowDecode/_float_channel.swift",
"ImageCodec/RawBitmap/SlowDecode/_unsigned_aligned_channel.swift",
"ImageCodec/RawBitmap/SlowDecode/_unsigned_channel.swift",
"ImageCodec/RawBitmap/SlowDecode/_unsigned_pixel.swift",
"ImageContext/DrawGradient.swift",
"ImageContext/DrawImage.swift",
"ImageContext/DrawMeshGradient.swift",
"ImageContext/DrawPattern.swift",
"ImageContext/DrawShadow.swift",
"ImageContext/DrawShape.swift",
"ImageContext/ImageContext.swift",
"ImageContext/ImageContextExtension.swift",
"ImageContext/PixelBlender.swift",
"ImageContext/Rasterizer.swift",
"ImageContext/Rendering.swift",
"ImageContext/SetClip.swift",
"ImageContext/Stencil.swift",
"ImageFilter/BayerDithering.swift",
"ImageFilter/BilateralFilter.swift",
"ImageFilter/ColorSeparation.swift",
"ImageFilter/DifferenceOfGaussian.swift",
"ImageFilter/DisplacementMap.swift",
"ImageFilter/GaussianBlur.swift",
"ImageFilter/ImageConvolution.swift",
"ImageFilter/LaplacianOfGaussian.swift",
"ImageFilter/SVGTurbulence.swift",
"ImageFilter/Underpainting.swift",
"ImageFilter/kMeansClustering.swift",
"Noise/SVGNoiseGenerator.swift",
"Noise/SimplexNoise.swift",
"PDFContext/PDFContext.swift",
"PDFContext/PDFContextEncoder.swift",
"PDFContext/PDFContextImage.swift",
"PDFContext/PDFContextPage.swift",
"PDFDocument/PDFDecoder.swift",
"PDFDocument/PDFDocument.swift",
"PDFDocument/PDFFilter/ASCII85Filter.swift",
"PDFDocument/PDFFilter/ASCIIHexFilter.swift",
"PDFDocument/PDFFilter/PDFFilter.swift",
"PDFDocument/PDFName.swift",
"PDFDocument/PDFNumber.swift",
"PDFDocument/PDFObject.swift",
"PDFDocument/PDFPage.swift",
"PDFDocument/PDFRenderer/PDFBitmap.swift",
"PDFDocument/PDFRenderer/PDFColorSpace.swift",
"PDFDocument/PDFRenderer/PDFCommand.swift",
"PDFDocument/PDFRenderer/PDFDrawPage.swift",
"PDFDocument/PDFRenderer/PDFFunction.swift",
"PDFDocument/PDFRenderer/PDFRenderer.swift",
"PDFDocument/PDFStream.swift",
"PDFDocument/PDFString.swift",
"PDFDocument/PDFXref.swift",
"Platform/AvailableColorSpaces.swift",
"Platform/AvailableFonts.swift",
"Prespecialize.swift",
"SVGContext/SVGContext.swift",
"SVGContext/SVGEffect/SVGBlendEffect.swift",
"SVGContext/SVGEffect/SVGColorMatrixEffect.swift",
"SVGContext/SVGEffect/SVGComponentTransferEffect.swift",
"SVGContext/SVGEffect/SVGConvolveMatrixEffect.swift",
"SVGContext/SVGEffect/SVGDisplacementMapEffect.swift",
"SVGContext/SVGEffect/SVGDropShadowEffect.swift",
"SVGContext/SVGEffect/SVGEffect.swift",
"SVGContext/SVGEffect/SVGFloodEffect.swift",
"SVGContext/SVGEffect/SVGGaussianBlurEffect.swift",
"SVGContext/SVGEffect/SVGHueRotateEffect.swift",
"SVGContext/SVGEffect/SVGImageEffect.swift",
"SVGContext/SVGEffect/SVGLightingEffect.swift",
"SVGContext/SVGEffect/SVGLuminanceToAlphaEffect.swift",
"SVGContext/SVGEffect/SVGMergeEffect.swift",
"SVGContext/SVGEffect/SVGMorphologyEffect.swift",
"SVGContext/SVGEffect/SVGOffsetEffect.swift",
"SVGContext/SVGEffect/SVGSaturateEffect.swift",
"SVGContext/SVGEffect/SVGTileEffect.swift",
"SVGContext/SVGEffect/SVGTurbulenceEffect.swift",
"Serialization/FixedNumber.swift"
],
"target_dependencies" : [
"DoggieCore",
"DoggieMath",
"DoggieGeometry"
],
"type" : "library"
},
{
"c99name" : "DoggieGeometry",
"module_type" : "SwiftTarget",
"name" : "DoggieGeometry",
"path" : "Sources/DoggieGeometry",
"product_memberships" : [
"DoggieGeometry",
"DoggieGraphics",
"DoggieGPU",
"Doggie"
],
"sources" : [
"ApplePlatform/AppleExported.swift",
"ApplePlatform/Geometry/CGAffineTransform.swift",
"ApplePlatform/Geometry/CGPath.swift",
"ApplePlatform/Geometry/CGPoint.swift",
"ApplePlatform/Geometry/CGRect.swift",
"ApplePlatform/Geometry/CGSize.swift",
"ApplePlatform/SwiftPlayground.swift",
"Arithmetic.swift",
"Bezier/Bezier.swift",
"Bezier/BezierArc.swift",
"Bezier/BezierOffset.swift",
"Bezier/BezierProtocol.swift",
"Bezier/CubicBezier.swift",
"Bezier/CubicBezierPatch.swift",
"Bezier/CubicBezierTriangularPatch.swift",
"Bezier/LineSegment.swift",
"Bezier/QuadBezier.swift",
"Exported.swift",
"Extension.swift",
"Geometry/EdgeInsets.swift",
"Geometry/Ellipse.swift",
"Geometry/Geometry.swift",
"Geometry/Matrix.swift",
"Geometry/Point.swift",
"Geometry/Rect.swift",
"Geometry/SDTransform.swift",
"Geometry/Size.swift",
"Geometry/Tensor.swift",
"Geometry/Vector.swift",
"Shape/PathCoder.swift",
"Shape/PathStroke.swift",
"Shape/SVGPathCoder.swift",
"Shape/Shape.swift",
"Shape/ShapeSegment.swift",
"Shape/ShapeTweening.swift",
"Shape/ShapeWinding.swift",
"Shape/VariableRoundStroke.swift",
"ShapeRegion/BreakLoop.swift",
"ShapeRegion/PathBuilder.swift",
"ShapeRegion/ShapeRegion.swift",
"ShapeRegion/ShapeRegionOp.swift",
"ShapeRegion/ShapeRegionWinding.swift"
],
"target_dependencies" : [
"DoggieCore",
"DoggieMath"
],
"type" : "library"
},
{
"c99name" : "DoggieGPU",
"module_type" : "SwiftTarget",
"name" : "DoggieGPU",
"path" : "Sources/DoggieGPU",
"product_memberships" : [
"DoggieGPU",
"Doggie"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/BilateralFilter.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/PalettizeKernel.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGComponentTransferKernel.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGConvolveKernel.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGDisplacementMapKernel.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGLightingKernel.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/SVGTurbulenceKernel.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/WrapTileKernel.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/CoreImage/Shaders/kMeansClusteringKernel.metal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/DoggieGPU/GPContext/Shaders/MeshGradientKernel.metal",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"CoreImage/BilateralFilter.swift",
"CoreImage/CIImage.swift",
"CoreImage/CIVector.swift",
"CoreImage/ConvolveKernel.swift",
"CoreImage/CoreImage.swift",
"CoreImage/MorphologyKernel.swift",
"CoreImage/PalettizeKernel.swift",
"CoreImage/SVGComponentTransferKernel.swift",
"CoreImage/SVGConvolveKernel.swift",
"CoreImage/SVGDisplacementMapKernel.swift",
"CoreImage/SVGLightingKernel.swift",
"CoreImage/SVGTurbulenceKernel.swift",
"CoreImage/ShaderLoader.swift",
"CoreImage/WrapTileKernel.swift",
"CoreImage/kMeansClusteringKernel.swift",
"Exported.swift",
"GPContext/CGContextProcessorKernel.swift",
"GPContext/CGPathProcessorKernel.swift",
"GPContext/GPContext.swift",
"GPContext/GPContextBase.swift",
"GPContext/GPContextExtension.swift",
"GPContext/GPContextPattern.swift",
"GPContext/MeshGradientKernel.swift",
"Metal/MTLDevice.swift",
"Packed.swift",
"SIMD.swift"
],
"target_dependencies" : [
"DoggieGraphics"
],
"type" : "library"
},
{
"c99name" : "DoggieCore",
"module_type" : "SwiftTarget",
"name" : "DoggieCore",
"path" : "Sources/DoggieCore",
"product_dependencies" : [
"RealModule",
"Algorithms",
"Collections",
"Float16",
"brotli"
],
"product_memberships" : [
"DoggieCore",
"DoggieMath",
"DoggieGeometry",
"DoggieGraphics",
"DoggieGPU",
"Doggie"
],
"sources" : [
"ApplePlatform/AppleCompression.swift",
"ApplePlatform/AppleExported.swift",
"ApplePlatform/Metal.swift",
"ApplePlatform/NSItemProvider.swift",
"Compression/CompressionCodec.swift",
"Compression/brotli/BrotliDecoder.swift",
"Compression/brotli/BrotliEncoder.swift",
"Compression/zlib/Deflate.swift",
"Compression/zlib/Inflate.swift",
"Compression/zlib/zlib.swift",
"Concurrency/Sendable.swift",
"Concurrency/SerialRunLoop.swift",
"Concurrency/UnsafeSendable.swift",
"Exported.swift",
"Foundation/Algorithm.swift",
"Foundation/Cache.swift",
"Foundation/ContiguousBuffer.swift",
"Foundation/Data.swift",
"Foundation/Date.swift",
"Foundation/FileManager.swift",
"Foundation/Graph.swift",
"Foundation/Locking.swift",
"Foundation/MappedBuffer.swift",
"Foundation/Parallel.swift",
"Foundation/TypePunned.swift",
"Foundation/TypedData.swift",
"Foundation/URLComponents.swift",
"Foundation/UUID.swift",
"Foundation/WeakDictionary.swift",
"Foundation/WeakSet.swift",
"Json/Json.swift",
"Json/JsonCodable.swift",
"Json/JsonConvertible.swift",
"Json/JsonNumber.swift",
"Json/JsonNumberCodable.swift",
"MediaType/FileExtension.swift",
"MediaType/MIMEType.swift",
"MediaType/MediaType.swift",
"Serialization/BinaryFixedPoint.swift",
"Serialization/ByteCodable.swift",
"Serialization/Endianness.swift",
"Serialization/Signature.swift",
"Swift/CollectionExtension.swift",
"Swift/Decimal.swift",
"Swift/Dictionary.swift",
"Swift/Equatable.swift",
"Swift/FloatingPoint.swift",
"Swift/Integer.swift",
"Swift/OptionOneCollection.swift",
"Swift/Policy.swift",
"Swift/RawBitPattern.swift",
"Swift/String.swift",
"Swift/replaceValue.swift",
"XML/SDXMLAttribute.swift",
"XML/SDXMLDocument.swift",
"XML/SDXMLElement.swift",
"XML/SDXMLParser.swift",
"XML/SDXMLString.swift"
],
"target_dependencies" : [
"zlib_c"
],
"type" : "library"
},
{
"c99name" : "Doggie",
"module_type" : "SwiftTarget",
"name" : "Doggie",
"path" : "Sources/Doggie",
"product_memberships" : [
"Doggie"
],
"sources" : [
"Exported.swift"
],
"target_dependencies" : [
"DoggieCore",
"DoggieMath",
"DoggieGeometry",
"DoggieGraphics",
"DoggieGPU"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.