The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of AsyncGraphics, reference main (76499f), with Swift 6.0 for macOS (SPM) on 15 Oct 2024 01:58:21 UTC.

Swift 6 data race errors: 214

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

 31 |         position: Point3D? = nil,
 32 |         color: PixelColor = .white,
 33 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 34 |         resolution: Size3D,
 35 |         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cone/Cone3D.swift:93:30: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 91 |         position: Point3D? = nil,
 92 |         surfaceWidth: Double = 1.0,
 93 |         color: PixelColor = .white,
    |                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 94 |         backgroundColor: PixelColor = .clear,
 95 |         resolution: Size3D,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cone/Cone3D.swift:94:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 92 |         surfaceWidth: Double = 1.0,
 93 |         color: PixelColor = .white,
 94 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 95 |         resolution: Size3D,
 96 |         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cone/Cone3DGraphic.swift:26:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
24 |                                                                     options: .spatial)
25 |
26 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
27 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
28 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cone/Cone3DGraphic.swift:27:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
27 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |         public var surface: GraphicMetadata<Bool> = .init(value: .fixed(false))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cylinder/Cylinder3D.swift:32:30: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 30 |         cornerRadius: Double = 0.0,
 31 |         position: Point3D? = nil,
 32 |         color: PixelColor = .white,
    |                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 33 |         backgroundColor: PixelColor = .clear,
 34 |         resolution: Size3D,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cylinder/Cylinder3D.swift:33:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 31 |         position: Point3D? = nil,
 32 |         color: PixelColor = .white,
 33 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 34 |         resolution: Size3D,
 35 |         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cylinder/Cylinder3D.swift:92:30: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 90 |         position: Point3D? = nil,
 91 |         surfaceWidth: Double = 1.0,
 92 |         color: PixelColor = .white,
    |                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 93 |         backgroundColor: PixelColor = .clear,
 94 |         resolution: Size3D,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cylinder/Cylinder3D.swift:93:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 91 |         surfaceWidth: Double = 1.0,
 92 |         color: PixelColor = .white,
 93 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 94 |         resolution: Size3D,
 95 |         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cylinder/Cylinder3DGraphic.swift:31:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
29 |                                                                  docs: "Also know as fillet radius.")
30 |
31 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
32 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
33 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cylinder/Cylinder3DGraphic.swift:32:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
32 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 |
34 |         public var surface: GraphicMetadata<Bool> = .init(value: .fixed(false))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Line/Line.swift:37:50: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
35 |                             lineWidth: CGFloat = 1.0,
36 |                             cap: LineCap = .square,
37 |                             color: PixelColor = .white,
   |                                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
38 |                             backgroundColor: PixelColor = .black,
39 |                             resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Line/Line.swift:38:60: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |                             cap: LineCap = .square,
37 |                             color: PixelColor = .white,
38 |                             backgroundColor: PixelColor = .black,
   |                                                            `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |                             resolution: CGSize,
40 |                             tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Line/Line.swift:59:50: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
57 |                             lineWidth: CGFloat = 1.0,
58 |                             cap: LineCap = .square,
59 |                             color: PixelColor = .white,
   |                                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
60 |                             backgroundColor: PixelColor = .black,
61 |                             resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Line/Line.swift:60:60: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
58 |                             cap: LineCap = .square,
59 |                             color: PixelColor = .white,
60 |                             backgroundColor: PixelColor = .black,
   |                                                            `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
61 |                             resolution: CGSize,
62 |                             tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Line/LineGraphic.swift:9:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 7 |     public final class Line: ShapeContentGraphicProtocol {
 8 |
 9 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
10 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
11 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Line/LineGraphic.swift:10:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
10 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 |
12 |         var leadingPoint: GraphicMetadata<CGPoint> = .init(value: .resolutionAlignment(.leading),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Polygon/Polygon.swift:31:53: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
29 |                                rotation: Angle = .zero,
30 |                                cornerRadius: CGFloat = 0.0,
31 |                                color: PixelColor = .white,
   |                                                     `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
32 |                                backgroundColor: PixelColor = .black,
33 |                                resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Polygon/Polygon.swift:32:63: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
30 |                                cornerRadius: CGFloat = 0.0,
31 |                                color: PixelColor = .white,
32 |                                backgroundColor: PixelColor = .black,
   |                                                               `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 |                                resolution: CGSize,
34 |                                tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Polygon/PolygonGraphic.swift:27:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
25 |                                                                  options: .spatial)
26 |
27 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
28 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
29 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Polygon/PolygonGraphic.swift:28:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
26 |
27 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
28 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
29 |
30 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/Rectangle.swift:29:55: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 27 |                                  position: CGPoint? = nil,
 28 |                                  cornerRadius: CGFloat = 0.0,
 29 |                                  color: PixelColor = .white,
    |                                                       `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 30 |                                  backgroundColor: PixelColor = .black,
 31 |                                  resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/Rectangle.swift:30:65: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 28 |                                  cornerRadius: CGFloat = 0.0,
 29 |                                  color: PixelColor = .white,
 30 |                                  backgroundColor: PixelColor = .black,
    |                                                                 `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 31 |                                  resolution: CGSize,
 32 |                                  tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/Rectangle.swift:61:55: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 59 |     public static func rectangle(frame: CGRect,
 60 |                                  cornerRadius: CGFloat = 0.0,
 61 |                                  color: PixelColor = .white,
    |                                                       `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 62 |                                  backgroundColor: PixelColor = .black,
 63 |                                  resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/Rectangle.swift:62:65: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 60 |                                  cornerRadius: CGFloat = 0.0,
 61 |                                  color: PixelColor = .white,
 62 |                                  backgroundColor: PixelColor = .black,
    |                                                                 `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 63 |                                  resolution: CGSize,
 64 |                                  tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/Rectangle.swift:102:62: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
100 |                                         cornerRadius: CGFloat = 0.0,
101 |                                         lineWidth: CGFloat = 1.0,
102 |                                         color: PixelColor = .white,
    |                                                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
103 |                                         backgroundColor: PixelColor = .black,
104 |                                         resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/Rectangle.swift:103:72: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
101 |                                         lineWidth: CGFloat = 1.0,
102 |                                         color: PixelColor = .white,
103 |                                         backgroundColor: PixelColor = .black,
    |                                                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
104 |                                         resolution: CGSize,
105 |                                         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/Rectangle.swift:128:62: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
126 |                                         cornerRadius: CGFloat = 0.0,
127 |                                         lineWidth: CGFloat = 1.0,
128 |                                         color: PixelColor = .white,
    |                                                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
129 |                                         backgroundColor: PixelColor = .black,
130 |                                         resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/Rectangle.swift:129:72: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
127 |                                         lineWidth: CGFloat = 1.0,
128 |                                         color: PixelColor = .white,
129 |                                         backgroundColor: PixelColor = .black,
    |                                                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
130 |                                         resolution: CGSize,
131 |                                         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/RectangleGraphic.swift:18:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |                                                                  options: .spatial)
17 |
18 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
20 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/RectangleGraphic.swift:19:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |
18 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
19 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |         public var isStroked: GraphicMetadata<Bool> = .init(value: .fixed(false))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Sphere/Sphere3D.swift:25:52: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 23 |     public static func sphere(radius: Double? = nil,
 24 |                               position: Point3D? = nil,
 25 |                               color: PixelColor = .white,
    |                                                    `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 26 |                               backgroundColor: PixelColor = .clear,
 27 |                               resolution: Size3D,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Sphere/Sphere3D.swift:26:62: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 24 |                               position: Point3D? = nil,
 25 |                               color: PixelColor = .white,
 26 |                               backgroundColor: PixelColor = .clear,
    |                                                              `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 27 |                               resolution: Size3D,
 28 |                               tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Sphere/Sphere3D.swift:63:59: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 61 |                                      position: Point3D? = nil,
 62 |                                      surfaceWidth: Double = 1.0,
 63 |                                      color: PixelColor = .white,
    |                                                           `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 64 |                                      backgroundColor: PixelColor = .clear,
 65 |                                      resolution: Size3D,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Sphere/Sphere3D.swift:64:69: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 62 |                                      surfaceWidth: Double = 1.0,
 63 |                                      color: PixelColor = .white,
 64 |                                      backgroundColor: PixelColor = .clear,
    |                                                                     `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 65 |                                      resolution: Size3D,
 66 |                                      tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Sphere/Sphere3DGraphic.swift:16:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |                                                             options: .spatial)
15 |
16 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Sphere/Sphere3DGraphic.swift:17:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
17 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 |
19 |         public var surface: GraphicMetadata<Bool> = .init(value: .fixed(false))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Star/Star.swift:37:50: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
35 |                             rotation: Angle = .zero,
36 |                             cornerRadius: CGFloat = 0.0,
37 |                             color: PixelColor = .white,
   |                                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
38 |                             backgroundColor: PixelColor = .black,
39 |                             resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Star/Star.swift:38:60: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |                             cornerRadius: CGFloat = 0.0,
37 |                             color: PixelColor = .white,
38 |                             backgroundColor: PixelColor = .black,
   |                                                            `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |                             resolution: CGSize,
40 |                             tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Star/StarGraphic.swift:33:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
31 |                                                                  options: .spatial)
32 |
33 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
34 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
35 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Star/StarGraphic.swift:34:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
32 |
33 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
34 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
35 |
36 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Tetrahedron/Tetrahedron3D.swift:28:30: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 26 |         radius: Double? = nil,
 27 |         position: Point3D? = nil,
 28 |         color: PixelColor = .white,
    |                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 29 |         backgroundColor: PixelColor = .clear,
 30 |         resolution: Size3D,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Tetrahedron/Tetrahedron3D.swift:29:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 27 |         position: Point3D? = nil,
 28 |         color: PixelColor = .white,
 29 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 30 |         resolution: Size3D,
 31 |         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Tetrahedron/Tetrahedron3D.swift:70:30: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 68 |         position: Point3D? = nil,
 69 |         surfaceWidth: Double = 1.0,
 70 |         color: PixelColor = .white,
    |                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 71 |         backgroundColor: PixelColor = .clear,
 72 |         resolution: Size3D,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Tetrahedron/Tetrahedron3D.swift:71:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 69 |         surfaceWidth: Double = 1.0,
 70 |         color: PixelColor = .white,
 71 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 72 |         resolution: Size3D,
 73 |         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Tetrahedron/Tetrahedron3DGraphic.swift:23:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
21 |                                                             options: .spatial)
22 |
23 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
24 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
25 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Tetrahedron/Tetrahedron3DGraphic.swift:24:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
22 |
23 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
24 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |         public var surface: GraphicMetadata<Bool> = .init(value: .fixed(false))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Torus/Torus3D.swift:30:30: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 28 |         revolvingRadius: Double? = nil,
 29 |         position: Point3D? = nil,
 30 |         color: PixelColor = .white,
    |                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 31 |         backgroundColor: PixelColor = .clear,
 32 |         resolution: Size3D,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Torus/Torus3D.swift:31:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 29 |         position: Point3D? = nil,
 30 |         color: PixelColor = .white,
 31 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 32 |         resolution: Size3D,
 33 |         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Torus/Torus3D.swift:77:30: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 75 |         position: Point3D? = nil,
 76 |         surfaceWidth: Double = 1.0,
 77 |         color: PixelColor = .white,
    |                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 78 |         backgroundColor: PixelColor = .clear,
 79 |         resolution: Size3D,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Torus/Torus3D.swift:78:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 76 |         surfaceWidth: Double = 1.0,
 77 |         color: PixelColor = .white,
 78 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 79 |         resolution: Size3D,
 80 |         tile: Tile = .one,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Torus/Torus3DGraphic.swift:26:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
24 |                                                                      options: .spatial)
25 |
26 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
27 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
28 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Torus/Torus3DGraphic.swift:27:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
27 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
28 |
29 |         public var surface: GraphicMetadata<Bool> = .init(value: .fixed(false))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Color/Color3DGraphic.swift:14:78: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 |         }
13 |
14 |         public var color: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |
16 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Color/ColorGraphic.swift:13:78: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 |         }
12 |
13 |         public var color: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/Gradient.swift:58:67: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 56 |     public static func gradient(direction: GradientDirection,
 57 |                                 stops: [GradientStop] = [
 58 |                                     GradientStop(at: 0.0, color: .black),
    |                                                                   `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 59 |                                     GradientStop(at: 1.0, color: .white)
 60 |                                 ],
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/Gradient.swift:59:67: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 57 |                                 stops: [GradientStop] = [
 58 |                                     GradientStop(at: 0.0, color: .black),
 59 |                                     GradientStop(at: 1.0, color: .white)
    |                                                                   `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 60 |                                 ],
 61 |                                 position: CGPoint? = nil,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/Gradient3D.swift:35:75: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
33 |     public static func gradient(direction: Gradient3DDirection,
34 |                                 stops: [Graphic.GradientStop] = [
35 |                                     Graphic.GradientStop(at: 0.0, color: .black),
   |                                                                           `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
36 |                                     Graphic.GradientStop(at: 1.0, color: .white)
37 |                                 ],
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/Gradient3D.swift:36:75: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
34 |                                 stops: [Graphic.GradientStop] = [
35 |                                     Graphic.GradientStop(at: 0.0, color: .black),
36 |                                     Graphic.GradientStop(at: 1.0, color: .white)
   |                                                                           `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
37 |                                 ],
38 |                                 position: Point3D? = nil,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/Gradient3DGraphic.swift:13:51: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 |
12 |         public var colorStops: GraphicMetadata<[Graphic.GradientStop]> = .init(value: .fixed([
13 |             Graphic.GradientStop(at: 0.0, color: .black),
   |                                                   `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |             Graphic.GradientStop(at: 1.0, color: .white),
15 |         ]))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/Gradient3DGraphic.swift:14:51: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 |         public var colorStops: GraphicMetadata<[Graphic.GradientStop]> = .init(value: .fixed([
13 |             Graphic.GradientStop(at: 0.0, color: .black),
14 |             Graphic.GradientStop(at: 1.0, color: .white),
   |                                                   `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |         ]))
16 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/GradientGraphic.swift:12:51: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
10 |
11 |         public var colorStops: GraphicMetadata<[Graphic.GradientStop]> = .init(value: .fixed([
12 |             Graphic.GradientStop(at: 0.0, color: .black),
   |                                                   `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
13 |             Graphic.GradientStop(at: 1.0, color: .white),
14 |         ]))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/GradientGraphic.swift:13:51: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
11 |         public var colorStops: GraphicMetadata<[Graphic.GradientStop]> = .init(value: .fixed([
12 |             Graphic.GradientStop(at: 0.0, color: .black),
13 |             Graphic.GradientStop(at: 1.0, color: .white),
   |                                                   `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |         ]))
15 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Chroma Key/ChromaKey.swift:36:30: warning: reference to static property 'rawGreen' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
34 |     ///   - alphaCrop: A alpha crop factor. *(Fraction from 0.0 to 1.0, default at 0.5)*
35 |     public func chromaKey(
36 |         color: PixelColor = .rawGreen,
   |                              `- warning: reference to static property 'rawGreen' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
37 |         parameters: ChromaKeyParameters = ChromaKeyParameters(),
38 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:30:23: note: static property declared here
28 |     public static var rawRed: PixelColor = .init(red: 1.0, green: 0.0, blue: 0.0)
29 |     public static var rawYellow: PixelColor = .init(red: 1.0, green: 1.0, blue: 0.0)
30 |     public static var rawGreen: PixelColor = .init(red: 0.0, green: 1.0, blue: 0.0)
   |                       `- note: static property declared here
31 |     public static var rawCyan: PixelColor = .init(red: 0.0, green: 1.0, blue: 1.0)
32 |     public static var rawBlue: PixelColor = .init(red: 0.0, green: 0.0, blue: 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Chroma Key/ChromaKeyGraphic.swift:18:78: warning: reference to static property 'rawGreen' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |         }
17 |
18 |         public var color: GraphicMetadata<PixelColor> = .init(value: .fixed(.rawGreen),
   |                                                                              `- warning: reference to static property 'rawGreen' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |                                                               docs: "Key color to remove.")
20 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:30:23: note: static property declared here
28 |     public static var rawRed: PixelColor = .init(red: 1.0, green: 0.0, blue: 0.0)
29 |     public static var rawYellow: PixelColor = .init(red: 1.0, green: 1.0, blue: 0.0)
30 |     public static var rawGreen: PixelColor = .init(red: 0.0, green: 1.0, blue: 0.0)
   |                       `- note: static property declared here
31 |     public static var rawCyan: PixelColor = .init(red: 0.0, green: 1.0, blue: 1.0)
32 |     public static var rawBlue: PixelColor = .init(red: 0.0, green: 0.0, blue: 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Gradient Lookup/GradientLookup3DGraphic.swift:16:51: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 |         public var colorStops: GraphicMetadata<[Graphic.GradientStop]> = .init(value: .fixed([
16 |             Graphic.GradientStop(at: 0.0, color: .black),
   |                                                   `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |             Graphic.GradientStop(at: 1.0, color: .white),
18 |         ]))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Gradient Lookup/GradientLookup3DGraphic.swift:17:51: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |         public var colorStops: GraphicMetadata<[Graphic.GradientStop]> = .init(value: .fixed([
16 |             Graphic.GradientStop(at: 0.0, color: .black),
17 |             Graphic.GradientStop(at: 1.0, color: .white),
   |                                                   `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 |         ]))
19 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Gradient Lookup/GradientLookupGraphic.swift:15:51: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |         public var colorStops: GraphicMetadata<[Graphic.GradientStop]> = .init(value: .fixed([
15 |             Graphic.GradientStop(at: 0.0, color: .black),
   |                                                   `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |             Graphic.GradientStop(at: 1.0, color: .white),
17 |         ]))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Gradient Lookup/GradientLookupGraphic.swift:16:51: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |         public var colorStops: GraphicMetadata<[Graphic.GradientStop]> = .init(value: .fixed([
15 |             Graphic.GradientStop(at: 0.0, color: .black),
16 |             Graphic.GradientStop(at: 1.0, color: .white),
   |                                                   `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |         ]))
18 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Map/ColorMap3DGraphic.swift:15:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
13 |         }
14 |
15 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
17 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Map/ColorMap3DGraphic.swift:16:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |
15 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
16 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |
18 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Map/ColorMapGraphic.swift:14:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 |         }
13 |
14 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.black))
16 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Map/ColorMapGraphic.swift:15:88: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
15 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.black))
   |                                                                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |
17 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Shift/ColorShift.swift:83:35: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 81 |         hue: Angle = .zero,
 82 |         saturation: CGFloat = 1.0,
 83 |         tint color: PixelColor = .white,
    |                                   `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 84 |         options: EffectOptions = []
 85 |     ) async throws -> Graphic {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Shift/ColorShift3D.swift:83:35: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 81 |         hue: Angle = .zero,
 82 |         saturation: CGFloat = 1.0,
 83 |         tint color: PixelColor = .white,
    |                                   `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 84 |         options: EffectOptions = []
 85 |     ) async throws -> Graphic3D {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Shift/ColorShift3DGraphic.swift:24:82: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
22 |                                                                 maximum: .fixed(2.0))
23 |
24 |         public var tintColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Shift/ColorShiftGraphic.swift:23:82: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
21 |                                                                 maximum: .fixed(2.0))
22 |
23 |         public var tintColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
24 |
25 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Slope/Slope.swift:17:31: warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |     public func slope(
16 |         amplitude: CGFloat = 1.0,
17 |         origin: PixelColor = .rawGray,
   |                               `- warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 |         options: EffectOptions = []
19 |     ) async throws -> Graphic {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:27:23: note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
   |                       `- note: static property declared here
28 |     public static var rawRed: PixelColor = .init(red: 1.0, green: 0.0, blue: 0.0)
29 |     public static var rawYellow: PixelColor = .init(red: 1.0, green: 1.0, blue: 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Slope/Slope3D.swift:17:31: warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |     public func slope(
16 |         amplitude: CGFloat = 1.0,
17 |         origin: PixelColor = .rawGray,
   |                               `- warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 |         options: EffectOptions = []
19 |     ) async throws -> Graphic3D {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:27:23: note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
   |                       `- note: static property declared here
28 |     public static var rawRed: PixelColor = .init(red: 1.0, green: 0.0, blue: 0.0)
29 |     public static var rawYellow: PixelColor = .init(red: 1.0, green: 1.0, blue: 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Slope/Slope3DGraphic.swift:23:84: warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
21 |                                                                options: .spatial)
22 |
23 |         public var originColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.rawGray))
   |                                                                                    `- warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
24 |
25 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:27:23: note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
   |                       `- note: static property declared here
28 |     public static var rawRed: PixelColor = .init(red: 1.0, green: 0.0, blue: 0.0)
29 |     public static var rawYellow: PixelColor = .init(red: 1.0, green: 1.0, blue: 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Slope/SlopeGraphic.swift:21:84: warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |                                                                maximum: .fixed(100.0))
20 |
21 |         public var originColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.rawGray))
   |                                                                                    `- warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
22 |
23 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:27:23: note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
   |                       `- note: static property declared here
28 |     public static var rawRed: PixelColor = .init(red: 1.0, green: 0.0, blue: 0.0)
29 |     public static var rawYellow: PixelColor = .init(red: 1.0, green: 1.0, blue: 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/Threshold.swift:18:30: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |     public func threshold(
17 |         _ fraction: CGFloat = 0.5,
18 |         color: PixelColor = .white,
   |                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |         backgroundColor: PixelColor = .black,
20 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/Threshold.swift:19:40: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |         _ fraction: CGFloat = 0.5,
18 |         color: PixelColor = .white,
19 |         backgroundColor: PixelColor = .black,
   |                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
20 |         options: EffectOptions = []
21 |     ) async throws -> Graphic {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/Threshold3D.swift:18:30: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |     public func threshold(
17 |         _ fraction: CGFloat = 0.5,
18 |         color: PixelColor = .white,
   |                              `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |         backgroundColor: PixelColor = .clear,
20 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/Threshold3D.swift:19:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |         _ fraction: CGFloat = 0.5,
18 |         color: PixelColor = .white,
19 |         backgroundColor: PixelColor = .clear,
   |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
20 |         options: EffectOptions = []
21 |     ) async throws -> Graphic3D {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/Threshold3DGraphic.swift:17:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |         public var fraction: GraphicMetadata<CGFloat> = .init(value: .fixed(0.5))
16 |
17 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 |
19 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/Threshold3DGraphic.swift:19:88: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
18 |
19 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.clear))
   |                                                                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/ThresholdGraphic.swift:16:88: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
14 |         public var fraction: GraphicMetadata<CGFloat> = .init(value: .fixed(0.5))
15 |
16 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                        `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |
18 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.black))
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/ThresholdGraphic.swift:18:88: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |         public var foregroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
17 |
18 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.black))
   |                                                                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 |
20 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Corner Pin/CornerPin.swift:18:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 16 |         perspective: Bool = true,
 17 |         subdivisions: Int = 32,
 18 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 19 |         options: EffectOptions = []
 20 |     ) async throws -> Graphic {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Corner Pin/CornerPinGraphic.swift:41:28: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
39 |
40 |         public var backgroundColor: GraphicMetadata<PixelColor> = .init(
41 |             value: .fixed(.clear))
   |                            `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
42 |
43 |         public func render(
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Orbit/Orbit.swift:14:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 |
13 |     public func orbit(
14 |         backgroundColor: PixelColor = .clear,
   |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |         rotationX: Angle = .zero,
16 |         rotationY: Angle = .zero,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Stack/Stack.swift:182:40: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
180 |         spacing: CGFloat,
181 |         padding: CGFloat,
182 |         backgroundColor: PixelColor = .black,
    |                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
183 |         resolution: CGSize? = nil,
184 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Stack/Stack.swift:206:40: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
204 |         spacing: CGFloat = 0.0,
205 |         padding: CGFloat = 0.0,
206 |         backgroundColor: PixelColor = .black,
    |                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
207 |         resolution: CGSize? = nil,
208 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Stack/Stack.swift:257:40: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
255 |         spacing: CGFloat,
256 |         padding: CGFloat,
257 |         backgroundColor: PixelColor = .black,
    |                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
258 |         resolution: CGSize? = nil,
259 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Stack/Stack.swift:281:40: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
279 |         spacing: CGFloat = 0.0,
280 |         padding: CGFloat = 0.0,
281 |         backgroundColor: PixelColor = .black,
    |                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
282 |         resolution: CGSize? = nil,
283 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Stack/Stack.swift:306:40: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
304 |         spacing: CGFloat = 0.0,
305 |         padding: CGFloat = 0.0,
306 |         backgroundColor: PixelColor = .black,
    |                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
307 |         resolution: CGSize? = nil,
308 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Stack/Stack.swift:390:55: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
388 |                        spacing: CGFloat = 0.0,
389 |                        padding: CGFloat = 0.0,
390 |                        backgroundColor: PixelColor = .black,
    |                                                       `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
391 |                        resolution: CGSize? = nil) async throws -> Graphic {
392 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Stack/Stack.swift:413:55: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
411 |                        spacing: CGFloat = 0.0,
412 |                        padding: CGFloat = 0.0,
413 |                        backgroundColor: PixelColor = .black,
    |                                                       `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
414 |                        resolution: CGSize? = nil) async throws -> Graphic {
415 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Tile/Tile.swift:15:14: warning: associated value 'badCount' of 'Sendable'-conforming enum 'TileError' has non-sendable type 'Graphic.Tile.Size'; this is an error in the Swift 6 language mode
 13 |     public enum TileError: Error {
 14 |         case badResolution(CGSize)
 15 |         case badCount(Tile.Size)
    |              `- warning: associated value 'badCount' of 'Sendable'-conforming enum 'TileError' has non-sendable type 'Graphic.Tile.Size'; this is an error in the Swift 6 language mode
 16 |     }
 17 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphic/Extensions/Graphic+Tile.swift:24:23: note: consider making struct 'Size' conform to the 'Sendable' protocol
22 |         }
23 |
24 |         public struct Size: Hashable {
   |                       `- note: consider making struct 'Size' conform to the 'Sendable' protocol
25 |             public var width: Int
26 |             public var height: Int
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Tile/Tile3D.swift:16:14: warning: associated value 'badCount' of 'Sendable'-conforming enum 'TileError' has non-sendable type 'Graphic3D.Tile.Size'; this is an error in the Swift 6 language mode
 14 |     public enum TileError: Error {
 15 |         case badResolution(Size3D)
 16 |         case badCount(Tile.Size)
    |              `- warning: associated value 'badCount' of 'Sendable'-conforming enum 'TileError' has non-sendable type 'Graphic3D.Tile.Size'; this is an error in the Swift 6 language mode
 17 |     }
 18 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphic/Extensions/Graphic3D+Tile.swift:27:23: note: consider making struct 'Size' conform to the 'Sendable' protocol
25 |         }
26 |
27 |         public struct Size: Hashable {
   |                       `- note: consider making struct 'Size' conform to the 'Sendable' protocol
28 |             public var width: Int
29 |             public var height: Int
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Displace/Displace.swift:20:31: warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
18 |         with graphic: Graphic,
19 |         offset: CGFloat,
20 |         origin: PixelColor = .rawGray,
   |                               `- warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
21 |         placement: Placement = .fill,
22 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:27:23: note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
   |                       `- note: static property declared here
28 |     public static var rawRed: PixelColor = .init(red: 1.0, green: 0.0, blue: 0.0)
29 |     public static var rawYellow: PixelColor = .init(red: 1.0, green: 1.0, blue: 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Displace/Displace3D.swift:19:31: warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
17 |         with graphic: Graphic3D,
18 |         offset: Double,
19 |         origin: PixelColor = .rawGray,
   |                               `- warning: reference to static property 'rawGray' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
20 |         placement: Graphic.Placement = .fill,
21 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:27:23: note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
   |                       `- note: static property declared here
28 |     public static var rawRed: PixelColor = .init(red: 1.0, green: 0.0, blue: 0.0)
29 |     public static var rawYellow: PixelColor = .init(red: 1.0, green: 1.0, blue: 0.0)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Color Shift/LumaColorShift.swift:90:34: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 88 |         hue: Angle = .zero,
 89 |         saturation: CGFloat = 1.0,
 90 |         tintColor: PixelColor = .white,
    |                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 91 |         lumaGamma: CGFloat = 1.0,
 92 |         placement: Placement = .fit,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Color Shift/LumaColorShift3D.swift:93:34: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 91 |         hue: Angle = .zero,
 92 |         saturation: CGFloat = 1.0,
 93 |         tintColor: PixelColor = .white,
    |                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 94 |         lumaGamma: CGFloat = 1.0,
 95 |         placement: Graphic.Placement = .fit,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Color Shift/LumaColorShift3DGraphic.swift:24:82: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
22 |         public var hue: GraphicMetadata<Angle> = .init()
23 |
24 |         public var tintColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |         public var lumaGamma: GraphicMetadata<CGFloat> = .init(value: .fixed(1.0),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Color Shift/LumaColorShiftGraphic.swift:23:82: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
21 |         public var hue: GraphicMetadata<Angle> = .init()
22 |
23 |         public var tintColor: GraphicMetadata<PixelColor> = .init(value: .fixed(.white))
   |                                                                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
24 |
25 |         public var lumaGamma: GraphicMetadata<CGFloat> = .init(value: .fixed(1.0),
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Stack/Stack3D.swift:73:27: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Graphic3D.Alignment3D' may have shared mutable state; this is an error in the Swift 6 language mode
 24 |     }
 25 |
 26 |     public struct Alignment3D: Codable, Hashable {
    |                   `- note: consider making struct 'Alignment3D' conform to the 'Sendable' protocol
 27 |
 28 |         @EnumMacro
    :
 71 |         public var z: Z
 72 |
 73 |         public static let center = Alignment3D(x: .center, y: .center, z: .center)
    |                           |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'Graphic3D.Alignment3D' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'center' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |         public init(x: X = .center, y: Y = .center, z: Z = .center) {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Stack/Stack3D.swift:89:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 87 |         spacing: Double = 0.0,
 88 |         padding: Double = 0.0,
 89 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 90 |         options: EffectOptions = []
 91 |     ) async throws -> Graphic3D {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Stack/Stack3D.swift:111:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
109 |         spacing: Double = 0.0,
110 |         padding: Double = 0.0,
111 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
112 |         options: EffectOptions = []
113 |     ) async throws -> Graphic3D {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Stack/Stack3D.swift:133:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
131 |         spacing: Double = 0.0,
132 |         padding: Double = 0.0,
133 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
134 |         options: EffectOptions = []
135 |     ) async throws -> Graphic3D {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Stack/Stack3D.swift:154:40: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
152 |         spacing: Double = 0.0,
153 |         padding: Double = 0.0,
154 |         backgroundColor: PixelColor = .clear,
    |                                        `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
155 |         options: EffectOptions = []
156 |     ) async throws -> Graphic3D {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Sample Line/SampleLine.swift:32:34: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 30 |         count: Int,
 31 |         blendingMode: BlendMode = .over,
 32 |         tintColor: PixelColor = .white,
    |                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 33 |         backgroundColor: PixelColor = .black,
 34 |         resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Sample Line/SampleLine.swift:33:40: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 31 |         blendingMode: BlendMode = .over,
 32 |         tintColor: PixelColor = .white,
 33 |         backgroundColor: PixelColor = .black,
    |                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 34 |         resolution: CGSize,
 35 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Sample Line/SampleLine.swift:66:34: warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 64 |         sampleDistance: CGFloat,
 65 |         blendingMode: BlendMode = .over,
 66 |         tintColor: PixelColor = .white,
    |                                  `- warning: reference to static property 'white' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 67 |         backgroundColor: PixelColor = .black,
 68 |         resolution: CGSize,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:24:23: note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
   |                       `- note: static property declared here
25 |     public static var black: PixelColor = .init(white: 0.0)
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Sample Line/SampleLine.swift:67:40: warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 65 |         blendingMode: BlendMode = .over,
 66 |         tintColor: PixelColor = .white,
 67 |         backgroundColor: PixelColor = .black,
    |                                        `- warning: reference to static property 'black' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 68 |         resolution: CGSize,
 69 |         options: EffectOptions = []
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:25:23: note: static property declared here
23 |
24 |     public static var white: PixelColor = .init(white: 1.0)
25 |     public static var black: PixelColor = .init(white: 0.0)
   |                       `- note: static property declared here
26 |
27 |     public static var rawGray: PixelColor = .init(white: 0.5)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Extensions/Renderer+CommandEncoder.swift:14:35: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
12 |         depthTexture: MTLTexture? = nil,
13 |         stencil: Bool = false,
14 |         clearColor: PixelColor = .clear,
   |                                   `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
15 |         commandBuffer: MTLCommandBuffer
16 |     ) throws -> MTLRenderCommandEncoder {
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Extensions/Types/Renderer+Options.swift:15:39: warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
13 |         var addressMode: MTLSamplerAddressMode = .clampToZero
14 |         var filter: MTLSamplerMinMagFilter = .linear
15 |         var clearColor: PixelColor = .clear
   |                                       `- warning: reference to static property 'clear' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
16 |         var additive: Bool = false
17 |         var depth: Bool = false
/Users/admin/builder/spi-builder-workspace/.build/checkouts/PixelColor/Sources/PixelColor/PixelColor+Colors.swift:21:23: note: static property declared here
19 |     }
20 |
21 |     public static var clear: PixelColor = .init(red: 0.0, green: 0.0, blue: 0.0, alpha: 0.0)
   |                       `- note: static property declared here
22 |     public static var clearWhite: PixelColor = .init(red: 1.0, green: 1.0, blue: 1.0, alpha: 0.0)
23 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Renderer.swift:17:23: warning: static property 'optimizationMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 |     /// Experimental
 17 |     public static var optimizationMode: Bool = false
    |                       |- warning: static property 'optimizationMode' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'optimizationMode' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'optimizationMode' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 |     /// Hardcoded. Defined as ARRMAX in shaders.
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Renderer.swift:22:23: warning: static property 'metalDevice' is not concurrency-safe because non-'Sendable' type 'any MTLDevice' may have shared mutable state; this is an error in the Swift 6 language mode
 20 |     private static let uniformArrayMaxLimit: Int = 128
 21 |
 22 |     public static let metalDevice: MTLDevice = {
    |                       `- warning: static property 'metalDevice' is not concurrency-safe because non-'Sendable' type 'any MTLDevice' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |         guard let device = MTLCreateSystemDefaultDevice() else {
 24 |             fatalError("Device Not Supported")
Metal.MTLDevice:2:17: note: protocol 'MTLDevice' does not conform to the 'Sendable' protocol
  1 | @available(macOS 10.11, *)
  2 | public protocol MTLDevice : NSObjectProtocol {
    |                 `- note: protocol 'MTLDevice' does not conform to the 'Sendable' protocol
  3 |     var name: String { get }
  4 |     @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Renderer.swift:9:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Metal'
  7 |
  8 | import Foundation
  9 | import SwiftUI
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Metal'
 10 | import MetalKit
 11 | import TextureMap
    :
 20 |     private static let uniformArrayMaxLimit: Int = 128
 21 |
 22 |     public static let metalDevice: MTLDevice = {
    |                       |- note: annotate 'metalDevice' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 23 |         guard let device = MTLCreateSystemDefaultDevice() else {
 24 |             fatalError("Device Not Supported")
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Renderer.swift:29:23: warning: static property 'customMetalLibrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 27 |     }()
 28 |
 29 |     public static var customMetalLibrary: MTLLibrary?
    |                       |- warning: static property 'customMetalLibrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customMetalLibrary' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'customMetalLibrary' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |
 31 |     public static var defaultMetalLibrary: MTLLibrary? = {
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Renderer.swift:31:23: warning: static property 'defaultMetalLibrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |     public static var customMetalLibrary: MTLLibrary?
 30 |
 31 |     public static var defaultMetalLibrary: MTLLibrary? = {
    |                       |- warning: static property 'defaultMetalLibrary' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'defaultMetalLibrary' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'defaultMetalLibrary' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         do {
 33 |             return try metalDevice.makeDefaultLibrary(bundle: .module)
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Renderer.swift:51:24: warning: static property 'storedCommandQueue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 |     )
 51 |     private static var storedCommandQueue: MTLCommandQueue?
    |                        |- warning: static property 'storedCommandQueue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'storedCommandQueue' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'storedCommandQueue' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     static var storedRenderPipelines: [PipelineProxy: MTLRenderPipelineState] = [:]
 53 |     static var storedComputePipelines: [Pipeline3DProxy: MTLComputePipelineState] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Renderer.swift:52:16: warning: static property 'storedRenderPipelines' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 50 |     )
 51 |     private static var storedCommandQueue: MTLCommandQueue?
 52 |     static var storedRenderPipelines: [PipelineProxy: MTLRenderPipelineState] = [:]
    |                |- warning: static property 'storedRenderPipelines' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'storedRenderPipelines' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'storedRenderPipelines' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |     static var storedComputePipelines: [Pipeline3DProxy: MTLComputePipelineState] = [:]
 54 |     static let storedVertexQuadBuffer: MTLBuffer? = try? makeVertexQuadBuffer()
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Renderer.swift:53:16: warning: static property 'storedComputePipelines' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 51 |     private static var storedCommandQueue: MTLCommandQueue?
 52 |     static var storedRenderPipelines: [PipelineProxy: MTLRenderPipelineState] = [:]
 53 |     static var storedComputePipelines: [Pipeline3DProxy: MTLComputePipelineState] = [:]
    |                |- warning: static property 'storedComputePipelines' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'storedComputePipelines' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'storedComputePipelines' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |     static let storedVertexQuadBuffer: MTLBuffer? = try? makeVertexQuadBuffer()
 55 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Renderer/Renderer.swift:54:16: warning: static property 'storedVertexQuadBuffer' is not concurrency-safe because non-'Sendable' type '(any MTLBuffer)?' may have shared mutable state; this is an error in the Swift 6 language mode
 52 |     static var storedRenderPipelines: [PipelineProxy: MTLRenderPipelineState] = [:]
 53 |     static var storedComputePipelines: [Pipeline3DProxy: MTLComputePipelineState] = [:]
 54 |     static let storedVertexQuadBuffer: MTLBuffer? = try? makeVertexQuadBuffer()
    |                |- warning: static property 'storedVertexQuadBuffer' is not concurrency-safe because non-'Sendable' type '(any MTLBuffer)?' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'storedVertexQuadBuffer' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |
 56 |     public static func commandQueue() -> MTLCommandQueue? {
Metal.MTLBuffer:2:17: note: protocol 'MTLBuffer' does not conform to the 'Sendable' protocol
 1 | @available(macOS 10.11, *)
 2 | public protocol MTLBuffer : MTLResource {
   |                 `- note: protocol 'MTLBuffer' does not conform to the 'Sendable' protocol
 3 |     var length: Int { get }
 4 |     func contents() -> UnsafeMutableRawPointer
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Views/Metal/GraphicMetalView.swift:16:9: warning: main actor-isolated property 'interpolation' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 10 | import TextureMap
 11 |
 12 | final class GraphicMetalView: MTKView, GraphicMetalViewable {
    |                                        `- note: add '@preconcurrency' to the 'GraphicMetalViewable' conformance to defer isolation checking to run time
 13 |
 14 |     private var graphic: Graphic?
 15 |
 16 |     let interpolation: Graphic.ViewInterpolation
    |         `- warning: main actor-isolated property 'interpolation' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 17 |
 18 |     var extendedDynamicRange: Bool
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Views/Metal/GraphicMetalViewable.swift:11:9: note: 'interpolation' declared here
 9 |
10 | protocol GraphicMetalViewable {
11 |     var interpolation: Graphic.ViewInterpolation { get }
   |         `- note: 'interpolation' declared here
12 |     var extendedDynamicRange: Bool { get set }
13 |     var didRender: (UUID) -> () { get }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Views/Metal/GraphicMetalView.swift:18:9: warning: main actor-isolated property 'extendedDynamicRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |     let interpolation: Graphic.ViewInterpolation
 17 |
 18 |     var extendedDynamicRange: Bool
    |         `- warning: main actor-isolated property 'extendedDynamicRange' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 |
 20 |     let didRender: (UUID) -> ()
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Views/Metal/GraphicMetalViewable.swift:12:9: note: 'extendedDynamicRange' declared here
10 | protocol GraphicMetalViewable {
11 |     var interpolation: Graphic.ViewInterpolation { get }
12 |     var extendedDynamicRange: Bool { get set }
   |         `- note: 'extendedDynamicRange' declared here
13 |     var didRender: (UUID) -> () { get }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Views/Metal/GraphicMetalView.swift:20:9: warning: main actor-isolated property 'didRender' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 18 |     var extendedDynamicRange: Bool
 19 |
 20 |     let didRender: (UUID) -> ()
    |         `- warning: main actor-isolated property 'didRender' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 21 |
 22 |     init(interpolation: Graphic.ViewInterpolation,
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Views/Metal/GraphicMetalViewable.swift:13:9: note: 'didRender' declared here
11 |     var interpolation: Graphic.ViewInterpolation { get }
12 |     var extendedDynamicRange: Bool { get set }
13 |     var didRender: (UUID) -> () { get }
   |         `- note: 'didRender' declared here
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Views/Render/GraphicViewRenderer.swift:9:13: warning: task-isolated value of type '() async -> ()?' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
  7 |     public var interpolation: Graphic.ViewInterpolation = .lanczos {
  8 |         didSet {
  9 |             Task {
    |             `- warning: task-isolated value of type '() async -> ()?' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
 10 |                 try? await render()
 11 |             }
/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Views/Render/GraphicViewRenderer.swift:20:13: warning: task-isolated value of type '() async -> ()?' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
 18 |     @Published var viewSize: CGSize? {
 19 |         didSet {
 20 |             Task {
    |             `- warning: task-isolated value of type '() async -> ()?' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
 21 |                 try? await render()
 22 |             }
Build complete! (103.66s)
warning: 'spi-builder-workspace': found 118 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Cross/Cross.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Layout/Padding/Padding.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/LUT/LUT.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Stack/ABStack.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Blur/LumaBlur.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Map/ColorMap3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Transform/LumaTransform.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Slope/Slope3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Sequence/Blends/Blends.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/place.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Content/radius.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Down Sample/DownSample.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Polar/Polar3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Transpose/Transpose.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Orbit/Orbit.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Stack/Stack3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Rectangle/Rectangle.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Arc/Arc.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/hsv_header.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Construct/Construct3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Particles/UV Particles/UVParticles.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Blend/Blend3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Kaleidoscope/Kaleidoscope.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/rotation_header.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Vertex/VertexPassthrough.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Range/Range3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Add/Add3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Edge/Edge3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/Gradient.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Sample Line/SampleLine.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Noise/Noise.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Crop/Crop.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Crop/Crop3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Pixelate/Pixelate.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Transform/Transform.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/clamp_header.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Blur/Blur.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Polar/Polar.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Shift/ColorShift3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Channel Mix/ChannelMix.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Vertex/VertexCamera.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Shift/ColorShift.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Channel Mix/ChannelMix3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Blend/Blend.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Levels/LumaLevels3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Particles/UVW Particles/UVWParticles.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/blend.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Range/Range.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Levels/Levels.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Bits/Bits3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cylinder/Cylinder3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Displace/Displace.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Vertex/FragmentColor.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/hsv.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/clamp.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Gradient Lookup/GradientLookup.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Content/gradient.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Displace/Displace3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Circle/Circle.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Edge/Edge.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Transform/Transform3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/blend_header.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Particles/UV Color Particles/UVColorParticles.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Cone/Cone3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Star/Star.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Line/Line.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Lookup/Lookup.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Content/noise_header.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Box/Box3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Quantize/Quantize.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Levels/LumaLevels.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Inspect/Inspect.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Map/ColorMap.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Slope/Slope.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Gradient Lookup/GradientLookup3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Average/Average.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Bits/Bits.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Clamp/Clamp.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Color Shift/LumaColorShift.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Content/random.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/rotation.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Noise/Noise3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Rainbow Blur/LumaRainbowBlur3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/Threshold3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Content/gradient_header.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Polygon/Polygon.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Color/Color.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Content/noise.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Coordinate Space/CoordinateSpace.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Remap/Remap.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Rainbow Blur/RainbowBlur.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Transform/LumaTransform3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Vertex/FragmentPassthrough.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Content/random_header.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Clamp/Clamp3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Blur/Blur3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Tetrahedron/Tetrahedron3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Levels/Levels3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Sphere/Sphere3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Quantize/Quantize3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Resolution/Resolution.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Effects/place_header.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Shape/Torus/Torus3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Color/Color3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Trace/Trace.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Convert/Stack/Stack.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Color Shift/LumaColorShift3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Threshold/Threshold.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Chroma Key/ChromaKey.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Circle Blur/CircleBlur.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Lookup/Lookup3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Cross/Cross3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Blur/LumaBlur3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Color/Convert/ColorConvert.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Sharpen/Sharpen.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Shaders/Content/radius_header.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Gradient/Gradient3D.metal
    /Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Luma Rainbow Blur/LumaRainbowBlur.metal
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "texturemap",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.4",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/heestand-xyz/TextureMap"
    },
    {
      "identity" : "pixelcolor",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.2.2",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/heestand-xyz/PixelColor"
    },
    {
      "identity" : "coregraphicsextensions",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.8.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/heestand-xyz/CoreGraphicsExtensions"
    },
    {
      "identity" : "spatialextensions",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.1.3",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/heestand-xyz/SpatialExtensions"
    },
    {
      "identity" : "videoframes",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/heestand-xyz/VideoFrames"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "509.0.0",
            "upper_bound" : "510.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-syntax"
    }
  ],
  "manifest_display_name" : "AsyncGraphics",
  "name" : "AsyncGraphics",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "AsyncGraphics",
      "targets" : [
        "AsyncGraphics"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "AsyncGraphicsMacros",
      "targets" : [
        "AsyncGraphicsMacros"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AsyncGraphicsTests",
      "module_type" : "SwiftTarget",
      "name" : "AsyncGraphicsTests",
      "path" : "Tests/AsyncGraphicsTests",
      "product_dependencies" : [
        "TextureMap",
        "PixelColor"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/AsyncGraphicsTests/TestAssets.xcassets",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CodableGraphicsTests.swift",
        "LiveGraphicsTests.swift"
      ],
      "target_dependencies" : [
        "AsyncGraphics"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AsyncGraphicsMacros",
      "module_type" : "SwiftTarget",
      "name" : "AsyncGraphicsMacros",
      "path" : "Sources/AsyncGraphicsMacros",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "AsyncGraphics",
        "AsyncGraphicsMacros"
      ],
      "sources" : [
        "EnumMacro.swift",
        "GraphicMacro.swift",
        "GraphicTypeMacro.swift",
        "Plugin.swift",
        "VariantMacro.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "AsyncGraphics",
      "module_type" : "SwiftTarget",
      "name" : "AsyncGraphics",
      "path" : "Sources/AsyncGraphics",
      "product_dependencies" : [
        "TextureMap",
        "PixelColor",
        "CoreGraphicsExtensions",
        "SpatialExtensions",
        "VideoFrames"
      ],
      "product_memberships" : [
        "AsyncGraphics"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Metal/SolidMetal.metal.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Content/Solid/Metal/SolidMetal3D.metal.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Modifier/Metal/DualMetal.metal.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Sequence/Metal/ArrayMetal.metal.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Graphics/Effects/Space/Metal/DirectMetal.metal.txt",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AsyncGraphics/Localizable.xcstrings",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Graph/AGGraph.swift",
        "Graph/AGParentGraph.swift",
        "Graph/AGSingleModifierParentGraph.swift",
        "Graph/AGSingleParentGraph.swift",
        "Graph/Builder/AGGraphBuilder.swift",
        "Graph/Extensions/Array+AGGraph.swift",
        "Graph/Renderer/AGGraphRenderer.swift",
        "Graph/Renderer/Componets/AGComponents.swift",
        "Graph/Renderer/Details/AGDetails.swift",
        "Graph/Renderer/Details/AGSpecification.swift",
        "Graph/Renderer/Details/Resources/AGResourceResolutions.swift",
        "Graph/Renderer/Details/Resources/AGResources.swift",
        "Graph/Types/AGContentMode.swift",
        "Graphic/Codable/Comlexity/GraphicComplexity.swift",
        "Graphic/Codable/Macros/CodableMacros.swift",
        "Graphic/Codable/Metadata/Enum/GraphicEnum.swift",
        "Graphic/Codable/Metadata/Enum/GraphicEnumCase.swift",
        "Graphic/Codable/Metadata/Enum/GraphicEnumMetadata.swift",
        "Graphic/Codable/Metadata/GraphicMetadata.swift",
        "Graphic/Codable/Metadata/GraphicMetadataOptions.swift",
        "Graphic/Codable/Metadata/GraphicMetadataValue.swift",
        "Graphic/Codable/Namespace/CodableGraphic.swift",
        "Graphic/Codable/Namespace/CodableGraphic3D.swift",
        "Graphic/Codable/Properties/Any/AnyGraphicEnumProperty.swift",
        "Graphic/Codable/Properties/Any/AnyGraphicProperty.swift",
        "Graphic/Codable/Properties/Any/AnyGraphicValueProperty.swift",
        "Graphic/Codable/Properties/GraphicEnumProperty.swift",
        "Graphic/Codable/Properties/GraphicPropertyType.swift",
        "Graphic/Codable/Properties/GraphicValueProperty.swift",
        "Graphic/Codable/Protocol/CodableGraphic3DProtocol.swift",
        "Graphic/Codable/Protocol/CodableGraphicProtocol.swift",
        "Graphic/Codable/Type/CodableGraphic3DType.swift",
        "Graphic/Codable/Type/CodableGraphicType.swift",
        "Graphic/Codable/Type/CodableGraphicTypeProtocol.swift",
        "Graphic/Codable/Values/GraphicValue.swift",
        "Graphic/Codable/Values/GraphicValueType.swift",
        "Graphic/Codable/Varaiants/CodableGraphic3DVariant.swift",
        "Graphic/Codable/Varaiants/CodableGraphicVariant.swift",
        "Graphic/Codable/Varaiants/GraphicVariant.swift",
        "Graphic/Codable/Varaiants/GraphicVariantID.swift",
        "Graphic/Extensions/Graphic+EdgeInsets.swift",
        "Graphic/Extensions/Graphic+Options.swift",
        "Graphic/Extensions/Graphic+Tile.swift",
        "Graphic/Extensions/Graphic3D+Axis.swift",
        "Graphic/Extensions/Graphic3D+Options.swift",
        "Graphic/Extensions/Graphic3D+Tile.swift",
        "Graphic/Graphic.swift",
        "Graphic/Graphic3D.swift",
        "Graphic/Graphicable.swift",
        "Graphic/Types/Blend Mode/ArrayBlendMode.swift",
        "Graphic/Types/Blend Mode/BlendMode.swift",
        "Graphic/Types/Interpolation/ViewInterpolation.swift",
        "Graphic/Types/Placement/Placement.swift",
        "Graphics/Content/Content.swift",
        "Graphics/Content/ContentGraphic3DProtocol.swift",
        "Graphics/Content/ContentGraphic3DType.swift",
        "Graphics/Content/ContentGraphicProtocol.swift",
        "Graphics/Content/ContentGraphicType.swift",
        "Graphics/Content/Particles/UV Color Particles/UVColorParticles.swift",
        "Graphics/Content/Particles/UV Particles/UVParticles.swift",
        "Graphics/Content/Particles/UVW Particles/UVWParticles.swift",
        "Graphics/Content/Resource/Buffer/Buffer.swift",
        "Graphics/Content/Resource/Camera/AGCamera.swift",
        "Graphics/Content/Resource/Camera/Camera.swift",
        "Graphics/Content/Resource/Camera/Graphic+Camera.swift",
        "Graphics/Content/Resource/Graph/Graph.swift",
        "Graphics/Content/Resource/Graphic/AGGraphic.swift",
        "Graphics/Content/Resource/Image/AGImage.swift",
        "Graphics/Content/Resource/Image/Image.swift",
        "Graphics/Content/Resource/Maps/MKCoordinateRegion+isValid.swift",
        "Graphics/Content/Resource/Maps/Maps.swift",
        "Graphics/Content/Resource/Pixels/Pixels.swift",
        "Graphics/Content/Resource/Screen/Screen.swift",
        "Graphics/Content/Resource/Screen/ScreenController.swift",
        "Graphics/Content/Resource/Text/GlyphText.swift",
        "Graphics/Content/Resource/Text/Text.swift",
        "Graphics/Content/Resource/Texture/Texture.swift",
        "Graphics/Content/Resource/Texture/Texture3D.swift",
        "Graphics/Content/Resource/Video/AGVideo.swift",
        "Graphics/Content/Resource/Video/GraphicVideoController.swift",
        "Graphics/Content/Resource/Video/GraphicVideoPlayer.swift",
        "Graphics/Content/Resource/Video/GraphicVideoRecorder.swift",
        "Graphics/Content/Resource/Video/Video.swift",
        "Graphics/Content/Resource/Video/VideoExport.swift",
        "Graphics/Content/Resource/Video/VideoFrames.swift",
        "Graphics/Content/Resource/View/View.swift",
        "Graphics/Content/Resource/Voxels/Voxels.swift",
        "Graphics/Content/Shape/Arc/Arc.swift",
        "Graphics/Content/Shape/Arc/ArcGraphic.swift",
        "Graphics/Content/Shape/Box/Box3D.swift",
        "Graphics/Content/Shape/Box/Box3DGraphic.swift",
        "Graphics/Content/Shape/Circle/AGCircle.swift",
        "Graphics/Content/Shape/Circle/Circle.swift",
        "Graphics/Content/Shape/Circle/CircleGraphic.swift",
        "Graphics/Content/Shape/Cone/Cone3D.swift",
        "Graphics/Content/Shape/Cone/Cone3DGraphic.swift",
        "Graphics/Content/Shape/Content+Shape.swift",
        "Graphics/Content/Shape/Cylinder/Cylinder3D.swift",
        "Graphics/Content/Shape/Cylinder/Cylinder3DGraphic.swift",
        "Graphics/Content/Shape/Line/Line.swift",
        "Graphics/Content/Shape/Line/LineGraphic.swift",
        "Graphics/Content/Shape/Polygon/AGPolygon.swift",
        "Graphics/Content/Shape/Polygon/AGRoundedPolygon.swift",
        "Graphics/Content/Shape/Polygon/Polygon.swift",
        "Graphics/Content/Shape/Polygon/PolygonGraphic.swift",
        "Graphics/Content/Shape/Rectangle/AGRectangle.swift",
        "Graphics/Content/Shape/Rectangle/AGRoundedRectangle.swift",
        "Graphics/Content/Shape/Rectangle/Rectangle.swift",
        "Graphics/Content/Shape/Rectangle/RectangleGraphic.swift",
        "Graphics/Content/Shape/ShapeContentGraphic3DProtocol.swift",
        "Graphics/Content/Shape/ShapeContentGraphic3DType.swift",
        "Graphics/Content/Shape/ShapeContentGraphicProtocol.swift",
        "Graphics/Content/Shape/ShapeContentGraphicType.swift",
        "Graphics/Content/Shape/Sphere/Sphere3D.swift",
        "Graphics/Content/Shape/Sphere/Sphere3DGraphic.swift",
        "Graphics/Content/Shape/Star/Star.swift",
        "Graphics/Content/Shape/Star/StarGraphic.swift",
        "Graphics/Content/Shape/Tetrahedron/Tetrahedron3D.swift",
        "Graphics/Content/Shape/Tetrahedron/Tetrahedron3DGraphic.swift",
        "Graphics/Content/Shape/Torus/Torus3D.swift",
        "Graphics/Content/Shape/Torus/Torus3DGraphic.swift",
        "Graphics/Content/Solid/Color/AGColor.swift",
        "Graphics/Content/Solid/Color/AGForegroundColor.swift",
        "Graphics/Content/Solid/Color/Color.swift",
        "Graphics/Content/Solid/Color/Color3D.swift",
        "Graphics/Content/Solid/Color/Color3DGraphic.swift",
        "Graphics/Content/Solid/Color/ColorGraphic.swift",
        "Graphics/Content/Solid/Content+Solid.swift",
        "Graphics/Content/Solid/Gradient/Gradient.swift",
        "Graphics/Content/Solid/Gradient/Gradient3D.swift",
        "Graphics/Content/Solid/Gradient/Gradient3DGraphic.swift",
        "Graphics/Content/Solid/Gradient/GradientGraphic.swift",
        "Graphics/Content/Solid/Metal/SolidMetal.swift",
        "Graphics/Content/Solid/Metal/SolidMetal3D.swift",
        "Graphics/Content/Solid/Noise/AGNoise.swift",
        "Graphics/Content/Solid/Noise/Noise.swift",
        "Graphics/Content/Solid/Noise/Noise3D.swift",
        "Graphics/Content/Solid/Noise/Noise3DGraphic.swift",
        "Graphics/Content/Solid/Noise/NoiseGraphic.swift",
        "Graphics/Content/Solid/SolidContentGraphic3DProtocol.swift",
        "Graphics/Content/Solid/SolidContentGraphic3DType.swift",
        "Graphics/Content/Solid/SolidContentGraphicProtocol.swift",
        "Graphics/Content/Solid/SolidContentGraphicType.swift",
        "Graphics/Content/Solid/Spacer/AGSpacer.swift",
        "Graphics/Effects/Color/Background/AGBackgroundColor.swift",
        "Graphics/Effects/Color/Border/AGBorder.swift",
        "Graphics/Effects/Color/Channel Mix/AGChannelMix.swift",
        "Graphics/Effects/Color/Channel Mix/ChannelMix.swift",
        "Graphics/Effects/Color/Channel Mix/ChannelMix3D.swift",
        "Graphics/Effects/Color/Channel Mix/ChannelMix3DGraphic.swift",
        "Graphics/Effects/Color/Channel Mix/ChannelMixGraphic.swift",
        "Graphics/Effects/Color/Chroma Key/ChromaKey.swift",
        "Graphics/Effects/Color/Chroma Key/ChromaKeyGraphic.swift",
        "Graphics/Effects/Color/Clamp/Clamp.swift",
        "Graphics/Effects/Color/Clamp/Clamp3D.swift",
        "Graphics/Effects/Color/Clamp/Clamp3DGraphic.swift",
        "Graphics/Effects/Color/Clamp/ClampGraphic.swift",
        "Graphics/Effects/Color/ColorEffectGraphic3DProtocol.swift",
        "Graphics/Effects/Color/ColorEffectGraphic3DType.swift",
        "Graphics/Effects/Color/ColorEffectGraphicProtocol.swift",
        "Graphics/Effects/Color/ColorEffectGraphicType.swift",
        "Graphics/Effects/Color/Convert/ColorConvert.swift",
        "Graphics/Effects/Color/Convert/ColorConvertGraphic.swift",
        "Graphics/Effects/Color/Effect+Color.swift",
        "Graphics/Effects/Color/Gradient Lookup/GradientLookup.swift",
        "Graphics/Effects/Color/Gradient Lookup/GradientLookup3D.swift",
        "Graphics/Effects/Color/Gradient Lookup/GradientLookup3DGraphic.swift",
        "Graphics/Effects/Color/Gradient Lookup/GradientLookupGraphic.swift",
        "Graphics/Effects/Color/LUT/LUT.swift",
        "Graphics/Effects/Color/Levels/AGOpacity.swift",
        "Graphics/Effects/Color/Levels/Levels.swift",
        "Graphics/Effects/Color/Levels/Levels3D.swift",
        "Graphics/Effects/Color/Levels/Levels3DGraphic.swift",
        "Graphics/Effects/Color/Levels/LevelsGraphic.swift",
        "Graphics/Effects/Color/Map/ColorMap.swift",
        "Graphics/Effects/Color/Map/ColorMap3D.swift",
        "Graphics/Effects/Color/Map/ColorMap3DGraphic.swift",
        "Graphics/Effects/Color/Map/ColorMapGraphic.swift",
        "Graphics/Effects/Color/Quantize/Quantize.swift",
        "Graphics/Effects/Color/Quantize/Quantize3D.swift",
        "Graphics/Effects/Color/Quantize/Quantize3DGraphic.swift",
        "Graphics/Effects/Color/Quantize/QuantizeGraphic.swift",
        "Graphics/Effects/Color/Range/Range.swift",
        "Graphics/Effects/Color/Range/Range3D.swift",
        "Graphics/Effects/Color/Range/Range3DGraphic.swift",
        "Graphics/Effects/Color/Range/RangeGraphic.swift",
        "Graphics/Effects/Color/Segmentation/PersonSegmentation.swift",
        "Graphics/Effects/Color/Segmentation/PersonSegmentationGraphic.swift",
        "Graphics/Effects/Color/Shift/ColorShift.swift",
        "Graphics/Effects/Color/Shift/ColorShift3D.swift",
        "Graphics/Effects/Color/Shift/ColorShift3DGraphic.swift",
        "Graphics/Effects/Color/Shift/ColorShiftGraphic.swift",
        "Graphics/Effects/Color/Slope/Slope.swift",
        "Graphics/Effects/Color/Slope/Slope3D.swift",
        "Graphics/Effects/Color/Slope/Slope3DGraphic.swift",
        "Graphics/Effects/Color/Slope/SlopeGraphic.swift",
        "Graphics/Effects/Color/Threshold/Threshold.swift",
        "Graphics/Effects/Color/Threshold/Threshold3D.swift",
        "Graphics/Effects/Color/Threshold/Threshold3DGraphic.swift",
        "Graphics/Effects/Color/Threshold/ThresholdGraphic.swift",
        "Graphics/Effects/Convert/Add/Add3D.swift",
        "Graphics/Effects/Convert/Average/Average3D.swift",
        "Graphics/Effects/Convert/Bits/Bits.swift",
        "Graphics/Effects/Convert/Bits/Bits3D.swift",
        "Graphics/Effects/Convert/Bits/Bits3DGraphic.swift",
        "Graphics/Effects/Convert/Bits/BitsGraphic.swift",
        "Graphics/Effects/Convert/Color Space/ColorSpace.swift",
        "Graphics/Effects/Convert/Construct/Construct3D.swift",
        "Graphics/Effects/Convert/ConvertEffectGraphic3DProtocol.swift",
        "Graphics/Effects/Convert/ConvertEffectGraphic3DType.swift",
        "Graphics/Effects/Convert/ConvertEffectGraphicProtocol.swift",
        "Graphics/Effects/Convert/ConvertEffectGraphicType.swift",
        "Graphics/Effects/Convert/Copy/Copy.swift",
        "Graphics/Effects/Convert/Corner Pin/CornerPin.swift",
        "Graphics/Effects/Convert/Corner Pin/CornerPinGraphic.swift",
        "Graphics/Effects/Convert/Crop/Crop.swift",
        "Graphics/Effects/Convert/Crop/Crop3D.swift",
        "Graphics/Effects/Convert/Crop/CropGraphic.swift",
        "Graphics/Effects/Convert/Crop/CropGraphic3D.swift",
        "Graphics/Effects/Convert/Down Sample/DownSample.swift",
        "Graphics/Effects/Convert/Effect+Convert.swift",
        "Graphics/Effects/Convert/Inspect/Inspect.swift",
        "Graphics/Effects/Convert/Map/Map.swift",
        "Graphics/Effects/Convert/Merge/Merge3D.swift",
        "Graphics/Effects/Convert/Orbit/Orbit.swift",
        "Graphics/Effects/Convert/Polar/Polar.swift",
        "Graphics/Effects/Convert/Polar/Polar3D.swift",
        "Graphics/Effects/Convert/Reduce/Reduce.swift",
        "Graphics/Effects/Convert/Resolution/Resolution.swift",
        "Graphics/Effects/Convert/Resolution/ResolutionGraphic.swift",
        "Graphics/Effects/Convert/Sample/Sample3D.swift",
        "Graphics/Effects/Convert/Stack/AGHStack.swift",
        "Graphics/Effects/Convert/Stack/AGVStack.swift",
        "Graphics/Effects/Convert/Stack/AGZStack.swift",
        "Graphics/Effects/Convert/Stack/Stack.swift",
        "Graphics/Effects/Convert/Tile/Tile.swift",
        "Graphics/Effects/Convert/Tile/Tile3D.swift",
        "Graphics/Effects/Convert/Trace/Trace3D.swift",
        "Graphics/Effects/Convert/Transpose/Transpose.swift",
        "Graphics/Effects/Effect.swift",
        "Graphics/Effects/EffectGraphic3DProtocol.swift",
        "Graphics/Effects/EffectGraphic3DType.swift",
        "Graphics/Effects/EffectGraphicProtocol.swift",
        "Graphics/Effects/EffectGraphicType.swift",
        "Graphics/Effects/Layout/Aspect Ratio/AGAspectRatio.swift",
        "Graphics/Effects/Layout/Frame/AGFrame.swift",
        "Graphics/Effects/Layout/Padding/AGPadding.swift",
        "Graphics/Effects/Layout/Padding/Padding.swift",
        "Graphics/Effects/Modifier/Background/AGBackground.swift",
        "Graphics/Effects/Modifier/Blend/AGBlend.swift",
        "Graphics/Effects/Modifier/Blend/AGBlended.swift",
        "Graphics/Effects/Modifier/Blend/Blend.swift",
        "Graphics/Effects/Modifier/Blend/Blend3D.swift",
        "Graphics/Effects/Modifier/Blend/Blend3DGraphic.swift",
        "Graphics/Effects/Modifier/Blend/BlendGraphic.swift",
        "Graphics/Effects/Modifier/Cross/Cross.swift",
        "Graphics/Effects/Modifier/Cross/Cross3D.swift",
        "Graphics/Effects/Modifier/Cross/Cross3DGraphic.swift",
        "Graphics/Effects/Modifier/Cross/CrossGraphic.swift",
        "Graphics/Effects/Modifier/Displace/Displace.swift",
        "Graphics/Effects/Modifier/Displace/Displace3D.swift",
        "Graphics/Effects/Modifier/Displace/Displace3DGraphic.swift",
        "Graphics/Effects/Modifier/Displace/DisplaceGraphic.swift",
        "Graphics/Effects/Modifier/Effect+Modifier.swift",
        "Graphics/Effects/Modifier/Lookup/Lookup.swift",
        "Graphics/Effects/Modifier/Lookup/Lookup3D.swift",
        "Graphics/Effects/Modifier/Lookup/Lookup3DGraphic.swift",
        "Graphics/Effects/Modifier/Lookup/LookupGraphic.swift",
        "Graphics/Effects/Modifier/Luma Blur/LumaBlur.swift",
        "Graphics/Effects/Modifier/Luma Blur/LumaBlur3D.swift",
        "Graphics/Effects/Modifier/Luma Blur/LumaBlur3DGraphic.swift",
        "Graphics/Effects/Modifier/Luma Blur/LumaBlurGraphic.swift",
        "Graphics/Effects/Modifier/Luma Color Shift/LumaColorShift.swift",
        "Graphics/Effects/Modifier/Luma Color Shift/LumaColorShift3D.swift",
        "Graphics/Effects/Modifier/Luma Color Shift/LumaColorShift3DGraphic.swift",
        "Graphics/Effects/Modifier/Luma Color Shift/LumaColorShiftGraphic.swift",
        "Graphics/Effects/Modifier/Luma Levels/LumaLevels.swift",
        "Graphics/Effects/Modifier/Luma Levels/LumaLevels3D.swift",
        "Graphics/Effects/Modifier/Luma Levels/LumaLevels3DGraphic.swift",
        "Graphics/Effects/Modifier/Luma Levels/LumaLevelsGraphic.swift",
        "Graphics/Effects/Modifier/Luma Rainbow Blur/LumaRainbowBlur.swift",
        "Graphics/Effects/Modifier/Luma Rainbow Blur/LumaRainbowBlur3D.swift",
        "Graphics/Effects/Modifier/Luma Rainbow Blur/LumaRainbowBlur3DGraphic.swift",
        "Graphics/Effects/Modifier/Luma Rainbow Blur/LumaRainbowBlurGraphic.swift",
        "Graphics/Effects/Modifier/Luma Transform/LumaTransform.swift",
        "Graphics/Effects/Modifier/Luma Transform/LumaTransform3D.swift",
        "Graphics/Effects/Modifier/Luma Transform/LumaTransform3DGraphic.swift",
        "Graphics/Effects/Modifier/Luma Transform/LumaTransformGraphic.swift",
        "Graphics/Effects/Modifier/Mask/AGMask.swift",
        "Graphics/Effects/Modifier/Mask/Mask.swift",
        "Graphics/Effects/Modifier/Mask/Mask3DGraphic.swift",
        "Graphics/Effects/Modifier/Mask/MaskGraphic.swift",
        "Graphics/Effects/Modifier/Metal/DualMetal.swift",
        "Graphics/Effects/Modifier/ModifierEffectGraphic3DProtocol.swift",
        "Graphics/Effects/Modifier/ModifierEffectGraphic3DType.swift",
        "Graphics/Effects/Modifier/ModifierEffectGraphicProtocol.swift",
        "Graphics/Effects/Modifier/ModifierEffectGraphicType.swift",
        "Graphics/Effects/Modifier/Remap/Remap.swift",
        "Graphics/Effects/Modifier/Stack/ABStack.swift",
        "Graphics/Effects/Modifier/Stack/Stack3D.swift",
        "Graphics/Effects/Sequence/Blends/Blends.swift",
        "Graphics/Effects/Sequence/ForEach/AGForEach.swift",
        "Graphics/Effects/Sequence/Group/AGGroup.swift",
        "Graphics/Effects/Sequence/Metal/ArrayMetal.swift",
        "Graphics/Effects/Space/Blur/AGBlur.swift",
        "Graphics/Effects/Space/Blur/Blur.swift",
        "Graphics/Effects/Space/Blur/Blur3D.swift",
        "Graphics/Effects/Space/Blur/Blur3DGraphic.swift",
        "Graphics/Effects/Space/Blur/BlurGraphic.swift",
        "Graphics/Effects/Space/Circle Blur/CircleBlur.swift",
        "Graphics/Effects/Space/Circle Blur/CircleBlurGraphic.swift",
        "Graphics/Effects/Space/Coordinate Space/CoordinateSpace.swift",
        "Graphics/Effects/Space/Edge/Edge.swift",
        "Graphics/Effects/Space/Edge/Edge3D.swift",
        "Graphics/Effects/Space/Edge/Edge3DGraphic.swift",
        "Graphics/Effects/Space/Edge/EdgeGraphic.swift",
        "Graphics/Effects/Space/Effect+Space.swift",
        "Graphics/Effects/Space/Kaleidoscope/Kaleidoscope.swift",
        "Graphics/Effects/Space/Kaleidoscope/KaleidoscopeGraphic.swift",
        "Graphics/Effects/Space/Metal/DirectMetal.swift",
        "Graphics/Effects/Space/Morph/Morph.swift",
        "Graphics/Effects/Space/Morph/MorphGraphic.swift",
        "Graphics/Effects/Space/Pixelate/Pixelate.swift",
        "Graphics/Effects/Space/Pixelate/PixelateGraphic.swift",
        "Graphics/Effects/Space/Rainbow Blur/RainbowBlur.swift",
        "Graphics/Effects/Space/Rainbow Blur/RainbowBlurGraphic.swift",
        "Graphics/Effects/Space/Sample Line/SampleLine.swift",
        "Graphics/Effects/Space/Sharpen/Sharpen.swift",
        "Graphics/Effects/Space/Sharpen/SharpenGraphic.swift",
        "Graphics/Effects/Space/SpaceEffectGraphic3DProtocol.swift",
        "Graphics/Effects/Space/SpaceEffectGraphic3DType.swift",
        "Graphics/Effects/Space/SpaceEffectGraphicProtocol.swift",
        "Graphics/Effects/Space/SpaceEffectGraphicType.swift",
        "Graphics/Effects/Space/Transform/AGOffset.swift",
        "Graphics/Effects/Space/Transform/Transform.swift",
        "Graphics/Effects/Space/Transform/Transform3D.swift",
        "Graphics/Effects/Space/Transform/TransformGraphic.swift",
        "Graphics/Effects/Space/Transform/TransformGraphic3D.swift",
        "Renderer/Extensions/Renderer+CommandEncoder.swift",
        "Renderer/Extensions/Renderer+Error.swift",
        "Renderer/Extensions/Renderer+Pipeline.swift",
        "Renderer/Extensions/Renderer+Sampler.swift",
        "Renderer/Extensions/Renderer+Shaders.swift",
        "Renderer/Extensions/Renderer+Vertex.swift",
        "Renderer/Extensions/Types/Renderer+Camera.swift",
        "Renderer/Extensions/Types/Renderer+Metadata.swift",
        "Renderer/Extensions/Types/Renderer+Options.swift",
        "Renderer/Extensions/Types/Renderer+Shader.swift",
        "Renderer/Extensions/Types/Renderer+Uniforms.swift",
        "Renderer/Renderer.swift",
        "Types/Extensions/Angle+codable.swift",
        "Types/Metal/MetalUniform.swift",
        "Types/Metal/RawMetalUniform.swift",
        "Types/Resolution/MultiDimensionalResolution.swift",
        "Types/Uniforms/Angle.swift",
        "Types/Uniforms/ColorUniform.swift",
        "Types/Uniforms/PointUniform.swift",
        "Types/Uniforms/SizeUniform.swift",
        "Types/Uniforms/VectorUniform.swift",
        "Views/AGView.swift",
        "Views/AsyncGraphicView.swift",
        "Views/Graphic3DImageRenderView.swift",
        "Views/Graphic3DRenderView.swift",
        "Views/Graphic3DView.swift",
        "Views/GraphicImageRenderView.swift",
        "Views/GraphicRenderView.swift",
        "Views/GraphicView.swift",
        "Views/Metal/GraphicMetalView.swift",
        "Views/Metal/GraphicMetalViewable.swift",
        "Views/Metal/GraphicMetalVisionView.swift",
        "Views/Render/Graphic3DImageRenderer.swift",
        "Views/Render/Graphic3DViewRenderer.swift",
        "Views/Render/GraphicImageRenderer.swift",
        "Views/Render/GraphicViewRenderer.swift",
        "Views/Representable/GraphicRepresentableView.swift",
        "Views/Representable/GraphicVisionRepresentableView.swift",
        "Views/State/Graphic3DRenderState.swift",
        "Views/State/GraphicRenderState.swift"
      ],
      "target_dependencies" : [
        "AsyncGraphicsMacros"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.