The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SwiftyCreatives, reference main (621e92), with Swift 6.0 for macOS (SPM) on 13 Oct 2025 11:33:57 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/yukiny0811/swifty-creatives.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/yukiny0811/swifty-creatives
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 621e925 transmittence calculation half -> float fix
Cloned https://github.com/yukiny0811/swifty-creatives.git
Revision (git rev-parse @):
621e925874f4667cd92d07d120cc2ec4f1ad3446
SUCCESS checkout https://github.com/yukiny0811/swifty-creatives.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/yukiny0811/swifty-creatives.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/42] Write sources
[11/42] Copying SharedIndices.h
[12/42] Write sources
[12/42] Copying Types.metal
[14/42] Copying NormalShader.metal
[14/42] Write sources
[16/42] Copying Functions.metal
[16/42] Copying TransparentShaderVision.metal
[16/42] Write sources
[17/42] Copying TransparentShader.metal
[17/42] Write sources
[21/42] Copying AddShader.metal
[25/42] Write sources
[36/42] Write swift-version-5BDAB9E9C0126B9D.txt
[38/85] Emitting module SwiftSyntax601
[39/85] Compiling SwiftSyntax601 Empty.swift
[40/85] Emitting module SwiftSyntax509
[41/85] Compiling SwiftSyntax509 Empty.swift
[42/85] Compiling SwiftSyntax600 Empty.swift
[43/85] Emitting module SwiftSyntax510
[44/85] Emitting module SwiftSyntax600
[45/85] Compiling SwiftSyntax510 Empty.swift
[46/85] Compiling SwiftSyntax602 Empty.swift
[47/85] Emitting module SwiftSyntax602
[47/85] Compiling _SwiftSyntaxCShims PlatformMutex.c
[49/149] Compiling SwiftSyntax CustomTraits.swift
[50/149] Compiling SwiftSyntax EditorPlaceholder.swift
[51/149] Compiling SwiftSyntax Identifier.swift
[52/149] Compiling SwiftSyntax MemoryLayout.swift
[53/149] Compiling SwiftSyntax MissingNodeInitializers.swift
[54/149] Compiling SwiftSyntax RawSyntax.swift
[55/149] Compiling SwiftSyntax RawSyntaxArena.swift
[56/156] Compiling SimpleSimdSwift Simd+RandomPoint.swift
[57/156] Compiling SimpleSimdSwift Simd+MemorySize.swift
[58/156] Compiling SimpleSimdSwift EXPORTER.swift
[59/156] Compiling SimpleSimdSwift Simd+3DTransform.swift
[60/156] Compiling SwiftSyntax SyntaxProtocol.swift
[61/156] Compiling SwiftSyntax SyntaxText.swift
[62/156] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[63/156] Compiling SwiftSyntax TokenDiagnostic.swift
[64/156] Compiling SwiftSyntax TokenSequence.swift
[65/156] Compiling SwiftSyntax TokenSyntax.swift
[66/156] Compiling SwiftSyntax Trivia.swift
[67/156] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[68/156] Compiling SwiftSyntax Syntax.swift
[69/156] Compiling SwiftSyntax SyntaxChildren.swift
[70/156] Compiling SwiftSyntax SyntaxCollection.swift
[71/156] Compiling SwiftSyntax SyntaxHashable.swift
[72/156] Compiling SwiftSyntax SyntaxIdentifier.swift
[73/156] Compiling SwiftSyntax SyntaxNodeStructure.swift
[74/156] Compiling SimpleSimdSwift Alias.swift
[75/156] Emitting module SimpleSimdSwift
[76/156] Compiling SimpleSimdSwift CastShortcuts.swift
[77/156] Emitting module SwiftyCoreText
[78/157] Compiling SwiftyCoreText GettingFontTableData.swift
[79/157] Compiling SwiftyCoreText GettingFontNames.swift
[80/157] Compiling SwiftyCoreText GettingTypeIdentifier.swift
[81/157] Emitting module SVGPath
[88/157] Compiling SwiftyCoreText WorkingWithEncoding.swift
[89/157] Compiling SwiftyCoreText WorkingWithFontVariations.swift
[90/157] Compiling SwiftyCoreText GettingGlyphData.swift
[91/157] Compiling SVGPath SVGPath+CoreGraphics.swift
[92/157] Compiling SVGPath SVGPath.swift
[93/178] Compiling SwiftyCoreText WorkingWithGlyphs.swift
[94/178] Compiling SwiftyCreativesSound TempiFFTWindowType.swift
[95/179] Compiling SwiftyCreativesSound FFTNoiseExtractionMethod.swift
[96/179] Compiling SwiftyCreativesSound FFTBandCalculationMethod.swift
[97/179] Emitting module SwiftyCreativesSound
[98/179] Emitting module SwiftSyntax
[99/179] Compiling SwiftyCreativesSound NoiseExtractor.swift
[100/179] Compiling SwiftyCreativesSound TempiFFT.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:81:53: warning: cannot use inout expression here; argument 'realp' must be a pointer that outlives the call to 'init(realp:imagp:)'
 79 |         var real = [Float](repeating: 0.0, count: self.halfSize)
 80 |         var imaginary = [Float](repeating: 0.0, count: self.halfSize)
 81 |         self.complexBuffer = DSPSplitComplex(realp: &real, imagp: &imaginary)
    |                                                     |- warning: cannot use inout expression here; argument 'realp' must be a pointer that outlives the call to 'init(realp:imagp:)'
    |                                                     |- note: implicit argument conversion from '[Float]' to 'UnsafeMutablePointer<Float>' produces a pointer valid only for the duration of the call to 'init(realp:imagp:)'
    |                                                     `- note: use the 'withUnsafeMutableBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
 82 |     }
 83 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:81:67: warning: cannot use inout expression here; argument 'imagp' must be a pointer that outlives the call to 'init(realp:imagp:)'
 79 |         var real = [Float](repeating: 0.0, count: self.halfSize)
 80 |         var imaginary = [Float](repeating: 0.0, count: self.halfSize)
 81 |         self.complexBuffer = DSPSplitComplex(realp: &real, imagp: &imaginary)
    |                                                                   |- warning: cannot use inout expression here; argument 'imagp' must be a pointer that outlives the call to 'init(realp:imagp:)'
    |                                                                   |- note: implicit argument conversion from '[Float]' to 'UnsafeMutablePointer<Float>' produces a pointer valid only for the duration of the call to 'init(realp:imagp:)'
    |                                                                   `- note: use the 'withUnsafeMutableBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
 82 |     }
 83 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:68:13: warning: initialization of immutable value 'lg2' was never used; consider replacing with assignment to '_' or removing it
 66 |
 67 |         // Check if the size is a power of two
 68 |         let lg2 = logbf(sizeFloat)
    |             `- warning: initialization of immutable value 'lg2' was never used; consider replacing with assignment to '_' or removing it
 69 | //        assert(remainderf(sizeFloat, powf(2.0, lg2)) == 0, "size \(sizeFloat) must be a power of 2. exInfo: sampleRate:\(inSampleRate), size:\(inSize)")
 70 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:132:53: warning: initialization of 'UnsafeMutablePointer<Float>' results in a dangling pointer
130 |             }
131 |         }
132 |         self.complexBuffer = DSPSplitComplex(realp: UnsafeMutablePointer(mutating: reals), imagp: UnsafeMutablePointer(mutating: imags))
    |                                                     |                              |- note: implicit argument conversion from '[Float]' to 'UnsafePointer<Float>' produces a pointer valid only for the duration of the call to 'init(mutating:)'
    |                                                     |                              `- note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
    |                                                     `- warning: initialization of 'UnsafeMutablePointer<Float>' results in a dangling pointer
133 |
134 |         // This compiles without error but doesn't actually work. It results in garbage values being stored to the complexBuffer's real and imag parts. Why? The above workaround is undoubtedly tons slower so it would be good to get vDSP_ctoz working again.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:132:99: warning: initialization of 'UnsafeMutablePointer<Float>' results in a dangling pointer
130 |             }
131 |         }
132 |         self.complexBuffer = DSPSplitComplex(realp: UnsafeMutablePointer(mutating: reals), imagp: UnsafeMutablePointer(mutating: imags))
    |                                                                                                   |                              |- note: implicit argument conversion from '[Float]' to 'UnsafePointer<Float>' produces a pointer valid only for the duration of the call to 'init(mutating:)'
    |                                                                                                   |                              `- note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
    |                                                                                                   `- warning: initialization of 'UnsafeMutablePointer<Float>' results in a dangling pointer
133 |
134 |         // This compiles without error but doesn't actually work. It results in garbage values being stored to the complexBuffer's real and imag parts. Why? The above workaround is undoubtedly tons slower so it would be good to get vDSP_ctoz working again.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesSound/FFT/TempiFFT.swift:250:19: warning: initialization of 'UnsafePointer<Float>' results in a dangling pointer
248 |     private func fastAverage(_ array:[Float], _ startIdx: Int, _ stopIdx: Int) -> Float {
249 |         var mean: Float = 0
250 |         let ptr = UnsafePointer<Float>(array)
    |                   |                    |- note: implicit argument conversion from '[Float]' to 'UnsafePointer<Float>' produces a pointer valid only for the duration of the call to 'init(_:)'
    |                   |                    `- note: use the 'withUnsafeBufferPointer' method on Array in order to explicitly convert argument to buffer pointer valid for a defined scope
    |                   `- warning: initialization of 'UnsafePointer<Float>' results in a dangling pointer
251 |         vDSP_meanv(ptr + startIdx, 1, &mean, UInt(stopIdx - startIdx))
252 |
[101/179] Compiling SwiftyCreativesSound FFTResultComponent.swift
[102/179] Compiling SwiftyCreativesSound DetailedAudioCapturer.swift
[103/179] Compiling SwiftyCreativesSound AudioCapturer.swift
[104/179] Compiling SwiftyCreativesSound FastAudioCapturer.swift
[105/179] Compiling SwiftyCreativesSound FFTVisualizer.swift
[106/179] Emitting module iGeometry
[107/181] Compiling iGeometry Int+Empty.swift
[108/181] Compiling iGeometry PathList.swift
[109/181] Compiling iGeometry RingSet.swift
[110/181] Compiling iGeometry DBPoint.swift
[111/181] Compiling iGeometry IntGeom.swift
[112/181] Compiling iGeometry PlainShape.swift
[113/181] Compiling iGeometry PlainShapeList.swift
[114/181] Compiling iGeometry Simplificator+Angle.swift
[115/181] Compiling iGeometry Simplificator+Area.swift
[116/181] Compiling iGeometry Shape.swift
[117/181] Compiling iGeometry Vertex.swift
[118/181] Compiling iGeometry PlainShape+Validation.swift
[119/181] Compiling iGeometry Circle.swift
[120/181] Compiling iGeometry IntPoint+Geom.swift
[121/181] Compiling iGeometry IntShape.swift
[122/181] Compiling iGeometry PlainShape+Initializers.swift
[123/181] Compiling iGeometry Rect.swift
[124/181] Compiling iGeometry Triangle.swift
[125/181] Compiling iGeometry IntPoint.swift
[126/181] Compiling iGeometry IntPoint+Array.swift
[127/181] Compiling iGeometry Simplificator+Linear.swift
[128/181] Compiling iGeometry Simplificator.swift
[129/200] Compiling iShapeTriangulation Delaunay.swift
[130/200] Compiling iShapeTriangulation IndexBuffer.swift
[131/200] Compiling iShapeTriangulation Triangulator.swift
[132/200] Compiling iShapeTriangulation IntPoint+Monotone.swift
[133/200] Compiling iShapeTriangulation Delaunay+Tesselation.swift
[134/200] Compiling iShapeTriangulation Delaunay+Triangle.swift
[135/200] Compiling iShapeTriangulation PlainShape+ShapeNavigator.swift
[136/200] Compiling iShapeTriangulation PlainShape+Triangulation.swift
[137/201] Compiling iShapeTriangulation PlainShape+Delaunay.swift
[138/201] Compiling iShapeTriangulation PlainShape+SliceBuffer.swift
[139/201] Compiling iShapeTriangulation Delaunay+Centroid.swift
[140/201] Compiling iShapeTriangulation Delaunay+Polygon.swift
[141/201] Compiling iShapeTriangulation CentroidNetError.swift
[142/201] Compiling iShapeTriangulation DelaunayError.swift
[143/201] Compiling iShapeTriangulation TessellationError.swift
[144/201] Compiling iShapeTriangulation TriangulationError.swift
[145/201] Compiling iShapeTriangulation PlainShape+Layout.swift
[146/201] Compiling iShapeTriangulation PlainShape+Modification.swift
[147/201] Emitting module iShapeTriangulation
[148/201] Compiling iShapeTriangulation IntTriangle.swift
[149/215] Compiling SwiftSyntax SyntaxCollections.swift
[150/215] Compiling SwiftSyntax SyntaxEnum.swift
[151/215] Compiling SwiftSyntax SyntaxKind.swift
[152/215] Compiling SwiftSyntax SyntaxRewriter.swift
[153/215] Compiling SwiftSyntax SyntaxTraits.swift
[154/215] Compiling SwiftSyntax SyntaxVisitor.swift
[155/215] Compiling SwiftSyntax TokenKind.swift
[156/215] Compiling SVGVertexBuilder SVGUtil.swift
[157/215] Compiling SVGVertexBuilder SVGUtil+MainFunctions.swift
[158/215] Compiling SVGVertexBuilder SVG.swift
[159/215] Compiling SVGVertexBuilder SVGUtil+HelperFunctions.swift
[160/215] Emitting module SVGVertexBuilder
[161/215] Compiling SVGVertexBuilder SVGPathAlias.swift
[163/215] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[164/215] Compiling SwiftSyntax ArenaAllocatedBuffer.swift
[165/215] Compiling SwiftSyntax Assert.swift
[166/215] Compiling SwiftSyntax BumpPtrAllocator.swift
[167/215] Compiling SwiftSyntax CommonAncestor.swift
[168/215] Compiling SwiftSyntax Convenience.swift
[169/215] Compiling VectorTriangulator VectorTriangulator.swift
[170/215] Emitting module VectorTriangulator
[171/215] Emitting module FontVertexBuilder
[172/215] Compiling FontVertexBuilder GlyphUtil.swift
[173/215] Compiling FontVertexBuilder GlyphUtil+HelperFunctions.swift
[174/215] Compiling FontVertexBuilder GlyphAlias.swift
[175/215] Compiling FontVertexBuilder GlyphUtil+MainFunctions.swift
[176/215] Compiling FontVertexBuilder PathText.swift
[177/215] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[178/215] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[179/215] Compiling SwiftSyntax RawSyntaxTokenView.swift
[180/215] Compiling SwiftSyntax SourceEdit.swift
[181/215] Compiling SwiftSyntax SourceLength.swift
[182/215] Compiling SwiftSyntax SourceLocation.swift
[183/215] Compiling SwiftSyntax SourcePresence.swift
[184/215] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[185/215] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[186/215] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[187/215] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[188/215] Compiling SwiftSyntax RawSyntaxValidation.swift
[189/215] Compiling SwiftSyntax SyntaxNodesAB.swift
[190/215] Compiling SwiftSyntax SyntaxNodesC.swift
[191/215] Compiling SwiftSyntax Tokens.swift
[192/215] Compiling SwiftSyntax TriviaPieces.swift
[193/215] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[194/215] Compiling SwiftSyntax RawSyntaxNodesC.swift
[195/215] Compiling SwiftSyntax RawSyntaxNodesD.swift
[196/215] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[197/215] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[198/215] Compiling SwiftSyntax Utils.swift
[199/215] Compiling SwiftSyntax ChildNameForKeyPath.swift
[200/215] Compiling SwiftSyntax Keyword.swift
[201/215] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[202/215] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[203/215] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[204/215] Compiling SwiftSyntax SyntaxBaseNodes.swift
[205/215] Compiling SwiftSyntax SyntaxNodesD.swift
[206/215] Compiling SwiftSyntax SyntaxNodesEF.swift
[207/215] Compiling SwiftSyntax SyntaxNodesGHI.swift
[208/215] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[209/215] Compiling SwiftSyntax SyntaxNodesOP.swift
[210/215] Compiling SwiftSyntax SyntaxNodesQRS.swift
[211/215] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[212/275] Emitting module SwiftDiagnostics
[213/276] Compiling SwiftDiagnostics Message.swift
[214/276] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[215/276] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[216/276] Compiling SwiftBasicFormat Syntax+Extensions.swift
[217/276] Compiling SwiftDiagnostics Convenience.swift
[218/276] Compiling SwiftDiagnostics Note.swift
[219/276] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[220/276] Compiling SwiftDiagnostics FixIt.swift
[221/276] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[222/276] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[223/276] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[224/276] Compiling SwiftDiagnostics Diagnostic.swift
[225/276] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[226/276] Compiling SwiftBasicFormat InferIndentation.swift
[227/276] Compiling SwiftBasicFormat Indenter.swift
[228/276] Emitting module SwiftBasicFormat
[229/276] Compiling SwiftBasicFormat BasicFormat.swift
[230/276] Compiling SwiftParser TopLevel.swift
[231/276] Compiling SwiftParser TriviaParser.swift
[232/276] Compiling SwiftParser Types.swift
[233/276] Compiling SwiftParser ExperimentalFeatures.swift
[234/280] Compiling SwiftParser StringLiterals.swift
[235/280] Compiling SwiftParser SwiftParserCompatibility.swift
[236/280] Compiling SwiftParser SwiftVersion.swift
[237/280] Compiling SwiftParser SyntaxUtils.swift
[238/280] Compiling SwiftParser TokenConsumer.swift
[239/280] Compiling SwiftParser TokenPrecedence.swift
[240/280] Compiling SwiftParser TokenSpec.swift
[241/280] Compiling SwiftParser TokenSpecSet.swift
[242/280] Compiling SwiftParser RegexLiteralLexer.swift
[243/280] Compiling SwiftParser UnicodeScalarExtensions.swift
[244/280] Compiling SwiftParser Lookahead.swift
[245/280] Compiling SwiftParser LoopProgressCondition.swift
[246/280] Compiling SwiftParser Modifiers.swift
[247/280] Emitting module SwiftParser
[248/280] Compiling SwiftParser Names.swift
[249/280] Compiling SwiftParser Nominals.swift
[250/280] Compiling SwiftParser Parameters.swift
[251/280] Compiling SwiftParser ParseSourceFile.swift
[252/280] Compiling SwiftParser Parser.swift
[253/280] Compiling SwiftParser Patterns.swift
[254/280] Compiling SwiftParser Recovery.swift
[255/280] Compiling SwiftParser Specifiers.swift
[256/280] Compiling SwiftParser Statements.swift
[257/280] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[258/280] Compiling SwiftParser IsValidIdentifier.swift
[259/280] Compiling SwiftParser Cursor.swift
[260/280] Compiling SwiftParser Lexeme.swift
[261/280] Compiling SwiftParser LexemeSequence.swift
[262/280] Compiling SwiftParser Lexer.swift
[263/280] Compiling SwiftParser Attributes.swift
[264/280] Compiling SwiftParser Availability.swift
[265/280] Compiling SwiftParser CharacterInfo.swift
[266/280] Compiling SwiftParser CollectionNodes+Parsable.swift
[267/280] Compiling SwiftParser CompilerFiles.swift
[268/280] Compiling SwiftParser Declarations.swift
[269/280] Compiling SwiftParser Directives.swift
[270/280] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[271/280] Compiling SwiftParser Expressions.swift
[272/280] Compiling SwiftParser IncrementalParseTransition.swift
[273/280] Compiling SwiftParser IsLexerClassified.swift
[274/280] Compiling SwiftParser LayoutNodes+Parsable.swift
[275/280] Compiling SwiftParser Parser+TokenSpecSet.swift
[276/280] Compiling SwiftParser TokenSpecStaticMembers.swift
[277/303] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[278/304] Compiling SwiftOperators PrecedenceGroup.swift
[279/304] Compiling SwiftOperators PrecedenceGraph.swift
[280/305] Compiling SwiftOperators OperatorTable+Defaults.swift
[281/305] Compiling SwiftOperators OperatorTable.swift
[282/305] Compiling SwiftOperators OperatorTable+Semantics.swift
[283/305] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[284/305] Compiling SwiftOperators OperatorError+Diagnostics.swift
[285/305] Compiling SwiftOperators OperatorError.swift
[286/305] Emitting module SwiftOperators
[287/305] Compiling SwiftOperators Operator.swift
[288/305] Compiling SwiftOperators OperatorTable+Folding.swift
[289/305] Compiling SwiftOperators SyntaxSynthesis.swift
[290/305] Compiling SwiftParserDiagnostics Utils.swift
[291/305] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[292/305] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[293/305] Compiling SwiftParserDiagnostics PresenceUtils.swift
[294/305] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[295/305] Compiling SwiftParserDiagnostics MissingNodesError.swift
[296/305] Compiling SwiftParserDiagnostics MissingTokenError.swift
[297/305] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[298/305] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[299/305] Emitting module SwiftParserDiagnostics
[300/305] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[301/305] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[302/320] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[303/320] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[304/320] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[305/320] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[306/320] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[307/320] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[308/320] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[309/320] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[310/320] Emitting module SwiftSyntaxBuilder
[311/320] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[312/320] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[313/320] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[314/320] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[315/320] Compiling SwiftSyntaxBuilder Indenter.swift
[316/320] Compiling SwiftSyntaxBuilder ListBuilder.swift
[317/321] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[318/339] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[319/339] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[320/340] Compiling SwiftSyntaxMacros PreambleMacro.swift
[321/340] Compiling SwiftSyntaxMacros Macro.swift
[322/340] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[323/340] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[324/340] Compiling SwiftSyntaxMacros Macro+Format.swift
[325/340] Compiling SwiftSyntaxMacros AttachedMacro.swift
[326/340] Compiling SwiftSyntaxMacros BodyMacro.swift
[327/340] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[328/340] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[329/340] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[330/340] Compiling SwiftSyntaxMacros AccessorMacro.swift
[331/340] Compiling SwiftSyntaxMacros MemberMacro.swift
[332/340] Compiling SwiftSyntaxMacros PeerMacro.swift
[333/340] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[334/340] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[335/340] Emitting module SwiftSyntaxMacros
[336/340] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[337/350] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[338/350] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[339/350] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[340/350] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[341/350] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[342/350] Emitting module SwiftSyntaxMacroExpansion
[343/350] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[344/350] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[345/350] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[346/350] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[347/362] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[348/362] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[349/362] Emitting module SwiftCompilerPluginMessageHandling
[350/362] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[351/362] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[352/362] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[353/362] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[354/362] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[355/362] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[356/362] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[357/362] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[358/362] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[359/363] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[360/365] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[361/365] Emitting module SwiftCompilerPlugin
[362/391] Compiling SwiftyCreativesMacro SwiftyCreativesMacroPlugin.swift
[363/391] Compiling SwiftyCreativesMacro String+Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesMacro/Utils/String+Error.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: Error {}
   | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[364/391] Emitting module SwiftyCreativesMacro
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreativesMacro/Utils/String+Error.swift:10:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension String: Error {}
   | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[365/391] Compiling SwiftyCreativesMacro SketchObject.swift
[365/391] Write Objects.LinkFileList
[366/391] Linking SwiftyCreativesMacro-tool
[368/391] Emitting module EasyMetalShaderMacro
[369/393] Compiling EasyMetalShaderMacro EMRenderShader+MemberMacro.swift
[370/393] Compiling EasyMetalShaderMacro EMRenderShader.swift
[371/393] Compiling EasyMetalShaderMacro EMComputeShader3D+MemberMacro.swift
[372/393] Compiling EasyMetalShaderMacro EMComputeShader3D.swift
[373/393] Compiling EasyMetalShaderMacro EMRenderShader+ExtensionMacro.swift
[374/393] Compiling EasyMetalShaderMacro EMRenderShader+MemberAttributeMacro.swift
[375/393] Compiling EasyMetalShaderMacro EMTextureArgument.swift
[376/393] Compiling EasyMetalShaderMacro EasyMetalShaderMacroPlugin.swift
[377/393] Compiling EasyMetalShaderMacro InitRender.swift
[378/393] Compiling EasyMetalShaderMacro RenderFunctionStrings.swift
[379/393] Compiling EasyMetalShaderMacro EMComputeShader+ExtensionMacro.swift
[380/393] Compiling EasyMetalShaderMacro EMComputeShader+MemberAttributeMacro.swift
[381/393] Compiling EasyMetalShaderMacro EMComputeShader+MemberMacro.swift
[382/393] Compiling EasyMetalShaderMacro EMComputeShader3D+ExtensionMacro.swift
[383/393] Compiling EasyMetalShaderMacro EMComputeShader3D+MemberAttributeMacro.swift
[384/393] Compiling EasyMetalShaderMacro EMComputeShader.swift
[385/393] Compiling EasyMetalShaderMacro ComputeFunctionStrings3D.swift
[386/393] Compiling EasyMetalShaderMacro InitCompute3D.swift
[387/393] Compiling EasyMetalShaderMacro EMArgument.swift
[388/393] Compiling EasyMetalShaderMacro ComputeFunctionStrings.swift
[389/393] Compiling EasyMetalShaderMacro InitCompute.swift
[390/393] Compiling EasyMetalShaderMacro String+Error.swift
[391/393] Compiling EasyMetalShaderMacro Util.swift
[391/393] Write Objects.LinkFileList
[392/393] Linking EasyMetalShaderMacro-tool
[394/418] Compiling EasyMetalShader ShaderStringBuilder.swift
[395/418] Compiling EasyMetalShader EXPORTER.swift
[396/418] Compiling EasyMetalShader MTLTexture+.swift
[397/420] Compiling EasyMetalShader VertexInput.swift
[398/420] Compiling EasyMetalShader ArrayBuffer.swift
[399/420] Compiling EasyMetalShader EMMetalArgument.swift
[400/420] Compiling EasyMetalShader EMMetalTexture.swift
[401/420] Compiling EasyMetalShader EMMetalTextureUsage.swift
[402/420] Compiling EasyMetalShader EMMetalComputeFunction.swift
[403/420] Compiling EasyMetalShader EMMetalRenderFunction.swift
[404/420] Compiling EasyMetalShader ShaderRenderer.swift
[405/420] Compiling EasyMetalShader EMIgnore.swift
[406/420] Compiling EasyMetalShader ShaderCore_EasyMetalShaderLib.swift
[407/420] Compiling EasyMetalShader MetalPreLibrary.swift
[408/420] Compiling EasyMetalShader Rand.swift
[409/420] Compiling EasyMetalShader RasterizerData.swift
[410/420] Compiling EasyMetalShader EMArgument.swift
[411/420] Compiling EasyMetalShader EMComputeShader.swift
[412/420] Compiling EasyMetalShader EMComputeShader3D.swift
[413/420] Compiling EasyMetalShader EMMetalDispatch.swift
[414/420] Compiling EasyMetalShader EMMetalFunction.swift
[415/420] Compiling EasyMetalShader EMRenderShader.swift
[416/420] Compiling EasyMetalShader EMTextureArgument.swift
[417/420] Compiling EasyMetalShader Include.swift
[418/420] Emitting module EasyMetalShader
[419/420] Compiling EasyMetalShader EasyShaderView.swift
[420/420] Compiling EasyMetalShader ShaderMTKView.swift
[421/510] Compiling SwiftyCreatives FunctionBase+BoldLine.swift
[422/510] Compiling SwiftyCreatives FunctionBase+Box.swift
[423/510] Compiling SwiftyCreatives FunctionBase+Circle.swift
[424/510] Compiling SwiftyCreatives FunctionBase+Color.swift
[425/510] Compiling SwiftyCreatives FunctionBase+Fog.swift
[426/510] Compiling SwiftyCreatives FunctionBase+HitTestableBox.swift
[427/510] Compiling SwiftyCreatives FunctionBase+HitTestableImg.swift
[428/510] Compiling SwiftyCreatives FunctionBase+Img.swift
[429/510] Compiling SwiftyCreatives FunctionBase+Line.swift
[430/510] Compiling SwiftyCreatives FunctionBase+Mesh.swift
[431/519] Compiling SwiftyCreatives SCPacket.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[432/519] Compiling SwiftyCreatives Sketch.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[433/519] Compiling SwiftyCreatives Sketch+UtilFunctions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[434/519] Compiling SwiftyCreatives Alias.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[435/519] Compiling SwiftyCreatives AssetUtil.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[436/519] Compiling SwiftyCreatives BlendMode.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[437/519] Compiling SwiftyCreatives DefaultBuffers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[438/519] Compiling SwiftyCreatives EXPORTER.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[439/519] Compiling SwiftyCreatives MathUtil.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[440/519] Compiling SwiftyCreatives SharedIndices.swift
[441/519] Compiling SwiftyCreatives KitSketchView.swift
[442/519] Compiling SwiftyCreatives SketchView.swift
[443/519] Compiling SwiftyCreatives TouchableMTKView+Configure.swift
[444/519] Compiling SwiftyCreatives TouchableMTKView+Deinitializer.swift
[445/519] Compiling SwiftyCreatives TouchableMTKView+Initializer.swift
[446/519] Compiling SwiftyCreatives TouchableMTKView+Utils.swift
[447/519] Compiling SwiftyCreatives TouchableMTKView.swift
[448/519] Compiling SwiftyCreatives resource_bundle_accessor.swift
[449/519] Compiling SwiftyCreatives CornerRadiusPostProcessor.swift
[450/519] Compiling SwiftyCreatives Img.swift
[451/519] Compiling SwiftyCreatives ModelObject.swift
[452/519] Compiling SwiftyCreatives SVGObj.swift
[453/519] Compiling SwiftyCreatives HitTestableBox.swift
[454/519] Compiling SwiftyCreatives HitTestableImg.swift
[455/519] Compiling SwiftyCreatives HitTestableRect.swift
[456/519] Compiling SwiftyCreatives UIViewObject.swift
[457/519] Compiling SwiftyCreatives HitTestablePrimitive.swift
[458/519] Compiling SwiftyCreatives ImageAdjustOption.swift
[459/519] Compiling SwiftyCreatives ImageAdjuster.swift
[460/519] Compiling SwiftyCreatives ImageLoadable.swift
[461/519] Compiling SwiftyCreatives RectanglePlanePrimitive.swift
[462/519] Compiling SwiftyCreatives ScaleSettable.swift
[463/519] Compiling SwiftyCreatives BoxInfo.swift
[464/519] Compiling SwiftyCreatives CircleInfo.swift
[465/519] Compiling SwiftyCreatives ModelObjectInfo.swift
[466/519] Compiling SwiftyCreatives PrimitiveInfo.swift
[467/519] Compiling SwiftyCreatives RectShapeInfo.swift
[468/519] Compiling SwiftyCreatives TriangleInfo.swift
[469/519] Compiling SwiftyCreatives FunctionBase+ModelObject.swift
[470/519] Compiling SwiftyCreatives FunctionBase+PushPop.swift
[471/519] Compiling SwiftyCreatives FunctionBase+Rect.swift
[472/519] Compiling SwiftyCreatives FunctionBase+Rotate.swift
[473/519] Compiling SwiftyCreatives FunctionBase+SVG.swift
[474/519] Compiling SwiftyCreatives FunctionBase+Scale.swift
[475/519] Compiling SwiftyCreatives FunctionBase+Text.swift
[476/519] Compiling SwiftyCreatives FunctionBase+Translate.swift
[477/519] Compiling SwiftyCreatives FunctionBase+Triangle.swift
[478/519] Compiling SwiftyCreatives FunctionBase.swift
[479/519] Compiling SwiftyCreatives Primitive.swift
[480/519] Compiling SwiftyCreatives RawTextFactory.swift
[481/519] Compiling SwiftyCreatives TextFactory.swift
[482/519] Compiling SwiftyCreatives LetterCache.swift
[483/519] Compiling SwiftyCreatives Text2D.swift
[484/519] Compiling SwiftyCreatives Text3D.swift
[485/519] Compiling SwiftyCreatives Text3DRaw.swift
[486/519] Compiling SwiftyCreatives TextBufferCreationError.swift
[487/519] Compiling SwiftyCreatives SCAnimatable.swift
[488/519] Compiling SwiftyCreatives AddRenderer.swift
[489/519] Compiling SwiftyCreatives RendererBase+Functions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[490/519] Compiling SwiftyCreatives RendererBase+StaticFunctions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[491/519] Compiling SwiftyCreatives RendererBase.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[492/519] Compiling SwiftyCreatives NormalBlendRenderer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[493/519] Compiling SwiftyCreatives TransparentRenderer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[494/519] Compiling SwiftyCreatives AddBlendRendererVision.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[495/519] Compiling SwiftyCreatives NormalBlendRendererVision.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[496/519] Compiling SwiftyCreatives TransparentRendererVision.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[497/519] Compiling SwiftyCreatives visionOSSettings.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[498/519] Compiling SwiftyCreatives ShaderCore.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:58:107: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 56 |         tileDesc.colorAttachments[0].pixelFormat = .bgra8Unorm
 57 |         tileDesc.threadgroupSizeMatchesTileSize = true
 58 |         resolveState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                           |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                           `- note: use 'MTLPipelineOption.bindingInfo' instead
 59 |
 60 |         tileDesc.tileFunction = clearFunction
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Renderers/TransparentRenderer.swift:61:109: warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
 59 |
 60 |         tileDesc.tileFunction = clearFunction
 61 |         clearTileState = try! ShaderCore.device.makeRenderPipelineState(tileDescriptor: tileDesc, options: .argumentInfo, reflection: nil) // FIXME: argumentinfo?
    |                                                                                                             |- warning: 'argumentInfo' was deprecated in macOS 13.0: renamed to 'MTLPipelineOption.bindingInfo'
    |                                                                                                             `- note: use 'MTLPipelineOption.bindingInfo' instead
 62 |
 63 |         // MARK: - Depth Descriptor
[499/519] Emitting module SwiftyCreatives
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:22:16: warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
17 |
18 | @MainActor
19 | open class Sketch: FunctionBase {
   |                    `- note: add '@preconcurrency' to the 'FunctionBase' conformance to defer isolation checking to run time
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
22 |     public var privateEncoder: SCEncoder?
   |                `- warning: main actor-isolated property 'privateEncoder' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
23 |     public var deltaTime: Float = 0
24 |     public var frameRate: Float { 1 / deltaTime }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:12:9: note: 'privateEncoder' declared here
10 |
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
   |         `- note: 'privateEncoder' declared here
13 |     var customMatrix: [f4x4] { get set }
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/Sketch.swift:21:16: warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 | open class Sketch: FunctionBase {
20 |     public var metalDrawableSize: f2 = .zero
21 |     public var customMatrix: [f4x4] = [f4x4.createIdentity()]
   |                `- warning: main actor-isolated property 'customMatrix' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |     public var privateEncoder: SCEncoder?
23 |     public var deltaTime: Float = 0
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Sketch/FunctionBase/FunctionBase.swift:13:9: note: 'customMatrix' declared here
11 | public protocol FunctionBase: AnyObject {
12 |     var privateEncoder: SCEncoder? { get set }
13 |     var customMatrix: [f4x4] { get set }
   |         `- note: 'customMatrix' declared here
14 | }
15 |
[500/519] Compiling SwiftyCreatives CameraConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[501/519] Compiling SwiftyCreatives DefaultOrthographicConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[502/519] Compiling SwiftyCreatives DefaultPerspectiveConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[503/519] Compiling SwiftyCreatives EasyCameraType.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[504/519] Compiling SwiftyCreatives MainCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[505/519] Compiling SwiftyCreatives DefaultDrawConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[506/519] Compiling SwiftyCreatives DrawConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[507/519] Compiling SwiftyCreatives Bool+.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[508/519] Compiling SwiftyCreatives CGPoint+.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[509/519] Compiling SwiftyCreatives CGSize+.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Camera/MainCamera.swift:233:13: warning: variable 'up' was never mutated; consider changing to 'let' constant
231 |         }
232 |
233 |         var up = simd_normalize(up)
    |             `- warning: variable 'up' was never mutated; consider changing to 'let' constant
234 |
235 |         var right = cross(fwd, up)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Extensions/CGSize+.swift:10:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 8 | import CoreGraphics
 9 |
10 | extension CGSize: AdditiveArithmetic {
   | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'AdditiveArithmetic'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public static func + (lhs: Self, rhs: Self) -> Self {
12 |         return Self.init(width: lhs.width + rhs.width, height: lhs.height + rhs.height)
[510/519] Compiling SwiftyCreatives Comparable+.swift
[511/519] Compiling SwiftyCreatives Float+.swift
[512/519] Compiling SwiftyCreatives MTLCommandBuffer+.swift
[513/519] Compiling SwiftyCreatives MTLTexture+.swift
[514/519] Compiling SwiftyCreatives Numeric+.swift
[515/519] Compiling SwiftyCreatives UIView+.swift
[516/519] Compiling SwiftyCreatives Box.swift
[517/519] Compiling SwiftyCreatives SketchObject.swift
[518/519] Compiling SwiftyCreatives SketchObjectHasDraw.swift
[519/519] Compiling SwiftyCreatives BloomPostProcessor.swift
Build complete! (56.26s)
Fetching https://github.com/yukiny0811/EasyMetalShader.git
Fetching https://github.com/yukiny0811/SimpleSimdSwift
Fetching https://github.com/pointfreeco/swift-snapshot-testing
Fetching https://github.com/yukiny0811/FontVertexBuilder
Fetching https://github.com/apple/swift-syntax.git
[1/254] Fetching fontvertexbuilder
[179/305] Fetching fontvertexbuilder, simplesimdswift
[249/1267] Fetching fontvertexbuilder, simplesimdswift, easymetalshader
Fetched https://github.com/yukiny0811/EasyMetalShader.git from cache (0.88s)
[299/72780] Fetching fontvertexbuilder, simplesimdswift, swift-syntax
[300/88334] Fetching fontvertexbuilder, simplesimdswift, swift-syntax, swift-snapshot-testing
Fetched https://github.com/yukiny0811/FontVertexBuilder from cache (3.20s)
Fetched https://github.com/apple/swift-syntax.git from cache (3.20s)
Fetched https://github.com/pointfreeco/swift-snapshot-testing from cache (3.20s)
Fetched https://github.com/yukiny0811/SimpleSimdSwift from cache (3.20s)
Computing version for https://github.com/apple/swift-syntax.git
Computed https://github.com/apple/swift-syntax.git at 602.0.0 (3.04s)
Computing version for https://github.com/yukiny0811/EasyMetalShader.git
Computed https://github.com/yukiny0811/EasyMetalShader.git at 3.3.2 (0.42s)
Computing version for https://github.com/yukiny0811/FontVertexBuilder
Computed https://github.com/yukiny0811/FontVertexBuilder at 2.1.1 (0.42s)
Fetching https://github.com/yukiny0811/SwiftyCoreText
Fetching https://github.com/yukiny0811/SVGPath
[1/51] Fetching swiftycoretext
[52/224] Fetching swiftycoretext, svgpath
Fetched https://github.com/yukiny0811/SwiftyCoreText from cache (0.66s)
Fetched https://github.com/yukiny0811/SVGPath from cache (0.66s)
Computing version for https://github.com/yukiny0811/SimpleSimdSwift
Computed https://github.com/yukiny0811/SimpleSimdSwift at 1.0.1 (0.43s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing
Computed https://github.com/pointfreeco/swift-snapshot-testing at 1.18.7 (0.45s)
Fetching https://github.com/pointfreeco/swift-custom-dump
[1/4598] Fetching swift-custom-dump
Fetched https://github.com/pointfreeco/swift-custom-dump from cache (0.95s)
Computing version for https://github.com/yukiny0811/SVGPath
Computed https://github.com/yukiny0811/SVGPath at 1.0.0 (0.54s)
Computing version for https://github.com/yukiny0811/SwiftyCoreText
Computed https://github.com/yukiny0811/SwiftyCoreText at 1.0.0 (0.44s)
Computing version for https://github.com/pointfreeco/swift-custom-dump
Computed https://github.com/pointfreeco/swift-custom-dump at 1.3.3 (0.43s)
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
[1/5552] Fetching xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.28s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 1.7.0 (0.44s)
Creating working copy for https://github.com/pointfreeco/swift-custom-dump
Working copy of https://github.com/pointfreeco/swift-custom-dump resolved at 1.3.3
Creating working copy for https://github.com/yukiny0811/SwiftyCoreText
Working copy of https://github.com/yukiny0811/SwiftyCoreText resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-syntax.git
Working copy of https://github.com/apple/swift-syntax.git resolved at 602.0.0
Creating working copy for https://github.com/yukiny0811/SVGPath
Working copy of https://github.com/yukiny0811/SVGPath resolved at 1.0.0
Creating working copy for https://github.com/yukiny0811/FontVertexBuilder
Working copy of https://github.com/yukiny0811/FontVertexBuilder resolved at 2.1.1
Creating working copy for https://github.com/yukiny0811/EasyMetalShader.git
Working copy of https://github.com/yukiny0811/EasyMetalShader.git resolved at 3.3.2
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing
Working copy of https://github.com/pointfreeco/swift-snapshot-testing resolved at 1.18.7
Creating working copy for https://github.com/yukiny0811/SimpleSimdSwift
Working copy of https://github.com/yukiny0811/SimpleSimdSwift resolved at 1.0.1
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 1.7.0
warning: 'swift-snapshot-testing': 'swift-snapshot-testing' dependency on 'https://github.com/swiftlang/swift-syntax' conflicts with dependency on 'https://github.com/apple/swift-syntax.git' which has the same identity 'swift-syntax'. this will be escalated to an error in future versions of SwiftPM.
warning: 'fontvertexbuilder': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/FontVertexBuilder/Sources/iShapeTriangulation/iShapeTriangulation_LICENSE
warning: 'fontvertexbuilder': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/FontVertexBuilder/Sources/iGeometry/iGeometry_LICENSE
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-snapshot-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.18.7",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-snapshot-testing"
    },
    {
      "identity" : "simplesimdswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/yukiny0811/SimpleSimdSwift"
    },
    {
      "identity" : "fontvertexbuilder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.1.1",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/yukiny0811/FontVertexBuilder"
    },
    {
      "identity" : "easymetalshader",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.3.2",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/yukiny0811/EasyMetalShader.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "602.0.0",
            "upper_bound" : "603.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-syntax.git"
    }
  ],
  "manifest_display_name" : "SwiftyCreatives",
  "name" : "SwiftyCreatives",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftyCreatives",
      "targets" : [
        "SwiftyCreatives"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SwiftyCreativesMacro",
      "targets" : [
        "SwiftyCreativesMacro"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftyCreativesTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftyCreativesTests",
      "path" : "Tests/SwiftyCreativesTests",
      "product_dependencies" : [
        "SnapshotTesting"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/Media.xcassets",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/SampleObject.mtl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/SampleObject.obj",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/SampleObjectWithTexture.mtl",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/SampleObjectWithTexture.obj",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SwiftyCreativesTests/Resources/sampleSvg.svg",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "SnapshotTests/Functions/BoldLineTests.swift",
        "SnapshotTests/Functions/BoxTests.swift",
        "SnapshotTests/Functions/CircleTests.swift",
        "SnapshotTests/Functions/ColorTests.swift",
        "SnapshotTests/Functions/FogTests.swift",
        "SnapshotTests/Functions/HitTestableBoxTests.swift",
        "SnapshotTests/Functions/HitTestableImgTests.swift",
        "SnapshotTests/Functions/ImgTests.swift",
        "SnapshotTests/Functions/LineTests.swift",
        "SnapshotTests/Functions/MeshTests.swift",
        "SnapshotTests/Functions/ModelTests.swift",
        "SnapshotTests/Functions/PushPopTests.swift",
        "SnapshotTests/Functions/RectTests.swift",
        "SnapshotTests/Functions/SVGTests.swift",
        "SnapshotTests/Functions/SketchForTest.swift",
        "SnapshotTests/Functions/TextTests.swift",
        "SnapshotTests/Functions/TriangleTests.swift",
        "SnapshotTests/Renderers/AddRendererTests.swift",
        "SnapshotTests/Renderers/NormalRendererTests.swift",
        "SnapshotTests/Renderers/TransparentRendererTests.swift",
        "SnapshotTests/SnapshotTestUtil.swift"
      ],
      "target_dependencies" : [
        "SwiftyCreatives"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftyCreativesSound",
      "module_type" : "SwiftTarget",
      "name" : "SwiftyCreativesSound",
      "path" : "Sources/SwiftyCreativesSound",
      "product_memberships" : [
        "SwiftyCreatives"
      ],
      "sources" : [
        "AudioCapturer.swift",
        "DetailedAudioCapturer.swift",
        "FFT/FFTBandCalculationMethod.swift",
        "FFT/FFTNoiseExtractionMethod.swift",
        "FFT/FFTResultComponent.swift",
        "FFT/TempiFFT.swift",
        "FFT/TempiFFTWindowType.swift",
        "FFTVisualizer.swift",
        "FastAudioCapturer.swift",
        "Utils/NoiseExtractor.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SwiftyCreativesMacro",
      "module_type" : "SwiftTarget",
      "name" : "SwiftyCreativesMacro",
      "path" : "Sources/SwiftyCreativesMacro",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SwiftyCreatives",
        "SwiftyCreativesMacro"
      ],
      "sources" : [
        "SketchObject/SketchObject.swift",
        "SwiftyCreativesMacroPlugin.swift",
        "Utils/String+Error.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "SwiftyCreatives",
      "module_type" : "SwiftTarget",
      "name" : "SwiftyCreatives",
      "path" : "Sources/SwiftyCreatives",
      "product_dependencies" : [
        "SimpleSimdSwift",
        "FontVertexBuilder",
        "EasyMetalShader"
      ],
      "product_memberships" : [
        "SwiftyCreatives"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/AddShader.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/Functions.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/NormalShader.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/SharedIndices.h",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/TransparentShader.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/TransparentShaderVision.metal",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftyCreatives/Resources/Shaders/Types.metal",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Camera/Config/CameraConfig.swift",
        "Camera/Config/DefaultOrthographicConfig.swift",
        "Camera/Config/DefaultPerspectiveConfig.swift",
        "Camera/EasyCameraType.swift",
        "Camera/MainCamera.swift",
        "DrawUtils/Config/DefaultDrawConfig.swift",
        "DrawUtils/Config/DrawConfig.swift",
        "Extensions/Bool+.swift",
        "Extensions/CGPoint+.swift",
        "Extensions/CGSize+.swift",
        "Extensions/Comparable+.swift",
        "Extensions/Float+.swift",
        "Extensions/MTLCommandBuffer+.swift",
        "Extensions/MTLTexture+.swift",
        "Extensions/Numeric+.swift",
        "Extensions/UIView+.swift",
        "GeometryPresets/Box.swift",
        "Macros/SketchObject.swift",
        "Macros/SketchObjectHasDraw.swift",
        "PostProcess/Presets/BloomPostProcessor.swift",
        "PostProcess/Presets/CornerRadiusPostProcessor.swift",
        "Primitives/Basics/Img.swift",
        "Primitives/Basics/ModelObject.swift",
        "Primitives/Basics/SVGObj.swift",
        "Primitives/HitTestables/HitTestableBox.swift",
        "Primitives/HitTestables/HitTestableImg.swift",
        "Primitives/HitTestables/HitTestableRect.swift",
        "Primitives/HitTestables/UIViewObject.swift",
        "Primitives/PrimitiveUtils/Abstract/HitTestablePrimitive.swift",
        "Primitives/PrimitiveUtils/Abstract/ImageAdjustOption.swift",
        "Primitives/PrimitiveUtils/Abstract/ImageAdjuster.swift",
        "Primitives/PrimitiveUtils/Abstract/ImageLoadable.swift",
        "Primitives/PrimitiveUtils/Abstract/RectanglePlanePrimitive.swift",
        "Primitives/PrimitiveUtils/Abstract/ScaleSettable.swift",
        "Primitives/PrimitiveUtils/Info/BoxInfo.swift",
        "Primitives/PrimitiveUtils/Info/CircleInfo.swift",
        "Primitives/PrimitiveUtils/Info/ModelObjectInfo.swift",
        "Primitives/PrimitiveUtils/Info/PrimitiveInfo.swift",
        "Primitives/PrimitiveUtils/Info/RectShapeInfo.swift",
        "Primitives/PrimitiveUtils/Info/TriangleInfo.swift",
        "Primitives/PrimitiveUtils/Primitive.swift",
        "Primitives/Texts/Factory/RawTextFactory.swift",
        "Primitives/Texts/Factory/TextFactory.swift",
        "Primitives/Texts/LetterCache.swift",
        "Primitives/Texts/Text/Text2D.swift",
        "Primitives/Texts/Text/Text3D.swift",
        "Primitives/Texts/Text/Text3DRaw.swift",
        "Primitives/Texts/Text/TextBufferCreationError.swift",
        "PropertyWrappers/SCAnimatable.swift",
        "Renderers/AddRenderer.swift",
        "Renderers/Base/RendererBase+Functions.swift",
        "Renderers/Base/RendererBase+StaticFunctions.swift",
        "Renderers/Base/RendererBase.swift",
        "Renderers/NormalBlendRenderer.swift",
        "Renderers/TransparentRenderer.swift",
        "Renderers/visionOS/AddBlendRendererVision.swift",
        "Renderers/visionOS/NormalBlendRendererVision.swift",
        "Renderers/visionOS/TransparentRendererVision.swift",
        "Renderers/visionOS/visionOSSettings.swift",
        "ShaderUtils/ShaderCore.swift",
        "Sketch/FunctionBase/FunctionBase+BoldLine.swift",
        "Sketch/FunctionBase/FunctionBase+Box.swift",
        "Sketch/FunctionBase/FunctionBase+Circle.swift",
        "Sketch/FunctionBase/FunctionBase+Color.swift",
        "Sketch/FunctionBase/FunctionBase+Fog.swift",
        "Sketch/FunctionBase/FunctionBase+HitTestableBox.swift",
        "Sketch/FunctionBase/FunctionBase+HitTestableImg.swift",
        "Sketch/FunctionBase/FunctionBase+Img.swift",
        "Sketch/FunctionBase/FunctionBase+Line.swift",
        "Sketch/FunctionBase/FunctionBase+Mesh.swift",
        "Sketch/FunctionBase/FunctionBase+ModelObject.swift",
        "Sketch/FunctionBase/FunctionBase+PushPop.swift",
        "Sketch/FunctionBase/FunctionBase+Rect.swift",
        "Sketch/FunctionBase/FunctionBase+Rotate.swift",
        "Sketch/FunctionBase/FunctionBase+SVG.swift",
        "Sketch/FunctionBase/FunctionBase+Scale.swift",
        "Sketch/FunctionBase/FunctionBase+Text.swift",
        "Sketch/FunctionBase/FunctionBase+Translate.swift",
        "Sketch/FunctionBase/FunctionBase+Triangle.swift",
        "Sketch/FunctionBase/FunctionBase.swift",
        "Sketch/SCPacket.swift",
        "Sketch/Sketch.swift",
        "Sketch/SketchFunctions/Sketch+UtilFunctions.swift",
        "Utils/Alias.swift",
        "Utils/AssetUtil.swift",
        "Utils/BlendMode.swift",
        "Utils/DefaultBuffers.swift",
        "Utils/EXPORTER.swift",
        "Utils/MathUtil.swift",
        "Utils/SharedIndices.swift",
        "Views/KitSketchView.swift",
        "Views/SketchView.swift",
        "Views/TouchableMTKView/TouchableMTKView+Configure.swift",
        "Views/TouchableMTKView/TouchableMTKView+Deinitializer.swift",
        "Views/TouchableMTKView/TouchableMTKView+Initializer.swift",
        "Views/TouchableMTKView/TouchableMTKView+Utils.swift",
        "Views/TouchableMTKView/TouchableMTKView.swift"
      ],
      "target_dependencies" : [
        "SwiftyCreativesSound",
        "SwiftyCreativesMacro"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.