Build Information
Failed to build SkiaKit, reference main (bad7d4
), with Swift 6.2 (beta) for Android on 20 Jun 2025 07:58:32 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/migueldeicaza/SkiaKit.git
Reference: main
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/migueldeicaza/SkiaKit
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at bad7d45 Update Package.swift
Cloned https://github.com/migueldeicaza/SkiaKit.git
Revision (git rev-parse @):
bad7d455aee89bc434b254aefd1518330662e23a
SUCCESS checkout https://github.com/migueldeicaza/SkiaKit.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/migueldeicaza/SkiaKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/3] Write sources
[1/3] Compiling CSkiaSharp dummy.m
[2/3] Write swift-version-8C5A4AE7A8CE2BA.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/36] Emitting module SkiaKit
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:101:66: error: cannot find type 'ushort' in scope
99 | /// - Parameter y: The y position for this run
100 | /// - Parameter glyphs: The glyphs to use for this run
101 | public func addRun (font: Font, x: Float, y: Float, glyphs: [ushort])
| `- error: cannot find type 'ushort' in scope
102 | {
103 | let run = allocateRun(font: font, count: Int32 (glyphs.count), x: x, y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:111:66: error: cannot find type 'ushort' in scope
109 | /// - Parameter y: The vertical offset within the blob.
110 | /// - Parameter glyphs: The glyphs to use for this run
111 | public func addHorizontalRun (font: Font, y: Float, glyphs: [ushort], positions: [Float])
| `- error: cannot find type 'ushort' in scope
112 | {
113 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:122:66: error: cannot find type 'ushort' in scope
120 | /// - Parameter y: The vertical offset within the blob.
121 | /// - Parameter glyphs: The glyphs to use for this run
122 | public func addPositionedRun (font: Font, y: Float, glyphs: [ushort], positions: [Point])
| `- error: cannot find type 'ushort' in scope
123 | {
124 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
[5/40] Compiling SkiaKit SKObject.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
100 | if let l = localMatrix {
101 | native = l.toNative()
102 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
103 | }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
132 | if let l = localMatrix {
133 | native = l.toNative()
134 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
135 | }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
165 | if let l = localMatrix {
166 | native = l.toNative()
167 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
168 | }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
199 | if let l = localMatrix {
200 | native = l.toNative()
201 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
202 | }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
231 | if let t = tileSize {
232 | n = t
233 | ptr = UnsafePointer<sk_isize_t>(&n)
| | |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
234 | }
235 | return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
249 | if let t = tileSize {
250 | n = t
251 | ptr = UnsafePointer<sk_isize_t>(&n)
| | |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
252 | }
253 | return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[6/40] Compiling SkiaKit SKStream.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
100 | if let l = localMatrix {
101 | native = l.toNative()
102 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
103 | }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
132 | if let l = localMatrix {
133 | native = l.toNative()
134 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
135 | }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
165 | if let l = localMatrix {
166 | native = l.toNative()
167 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
168 | }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
199 | if let l = localMatrix {
200 | native = l.toNative()
201 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
202 | }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
231 | if let t = tileSize {
232 | n = t
233 | ptr = UnsafePointer<sk_isize_t>(&n)
| | |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
234 | }
235 | return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
249 | if let t = tileSize {
250 | n = t
251 | ptr = UnsafePointer<sk_isize_t>(&n)
| | |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
252 | }
253 | return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[7/40] Compiling SkiaKit SKString.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
100 | if let l = localMatrix {
101 | native = l.toNative()
102 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
103 | }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
132 | if let l = localMatrix {
133 | native = l.toNative()
134 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
135 | }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
165 | if let l = localMatrix {
166 | native = l.toNative()
167 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
168 | }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
199 | if let l = localMatrix {
200 | native = l.toNative()
201 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
202 | }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
231 | if let t = tileSize {
232 | n = t
233 | ptr = UnsafePointer<sk_isize_t>(&n)
| | |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
234 | }
235 | return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
249 | if let t = tileSize {
250 | n = t
251 | ptr = UnsafePointer<sk_isize_t>(&n)
| | |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
252 | }
253 | return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[8/40] Compiling SkiaKit Shader.swift
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:102:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
100 | if let l = localMatrix {
101 | native = l.toNative()
102 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
103 | }
104 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:134:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
132 | if let l = localMatrix {
133 | native = l.toNative()
134 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
135 | }
136 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:167:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
165 | if let l = localMatrix {
166 | native = l.toNative()
167 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
168 | }
169 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:201:19: warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
199 | if let l = localMatrix {
200 | native = l.toNative()
201 | ptr = UnsafePointer<sk_matrix_t> (&native)
| | |- note: implicit argument conversion from 'sk_matrix_t' to 'UnsafePointer<sk_matrix_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_matrix_t>' results in a dangling pointer [#TemporaryPointers]
202 | }
203 |
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:233:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
231 | if let t = tileSize {
232 | n = t
233 | ptr = UnsafePointer<sk_isize_t>(&n)
| | |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
234 | }
235 | return Shader (handle: sk_shader_new_perlin_noise_fractal_noise(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
/host/spi-builder-workspace/Sources/SkiaKit/Shader.swift:251:19: warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
249 | if let t = tileSize {
250 | n = t
251 | ptr = UnsafePointer<sk_isize_t>(&n)
| | |- note: implicit argument conversion from 'sk_isize_t' to 'UnsafePointer<sk_isize_t>' produces a pointer valid only for the duration of the call to 'init(_:)'
| | `- note: use 'withUnsafePointer' in order to explicitly convert argument to pointer valid for a defined scope
| `- warning: initialization of 'UnsafePointer<sk_isize_t>' results in a dangling pointer [#TemporaryPointers]
252 | }
253 | return Shader (handle: sk_shader_new_perlin_noise_turbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed, ptr))
[#TemporaryPointers]: <https://docs.swift.org/compiler/documentation/diagnostics/temporary-pointers>
[9/40] Compiling SkiaKit PictureRecorder.swift
[10/40] Compiling SkiaKit Pixmap.swift
[11/40] Compiling SkiaKit Region.swift
[12/40] Compiling SkiaKit RoundRect.swift
[13/40] Compiling SkiaKit Paint.swift
[14/40] Compiling SkiaKit Path.swift
[15/40] Compiling SkiaKit PathEffect.swift
[16/40] Compiling SkiaKit Picture.swift
[17/40] Compiling SkiaKit SkiaCanvasLayer.swift
[18/40] Compiling SkiaKit SkiaView.swift
[19/40] Compiling SkiaKit Bitmap.swift
[20/40] Compiling SkiaKit Canvas.swift
[21/40] Compiling SkiaKit Color.swift
[22/40] Compiling SkiaKit Font.swift
[23/40] Compiling SkiaKit FontManager.swift
[24/40] Compiling SkiaKit FontStyle.swift
[25/40] Compiling SkiaKit FontStyleSet.swift
[26/40] Compiling SkiaKit Image.swift
[27/40] Compiling SkiaKit ColorFilter.swift
[28/40] Compiling SkiaKit ColorSpace.swift
[29/40] Compiling SkiaKit Colors.swift
[30/40] Compiling SkiaKit Data.swift
[31/40] Compiling SkiaKit Definitions.swift
[32/40] Compiling SkiaKit ImageFilter.swift
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:88: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:90: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
[33/40] Compiling SkiaKit ImageInfo.swift
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:88: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:90: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
[34/40] Compiling SkiaKit MaskFilter.swift
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:88: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:90: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
[35/40] Compiling SkiaKit MathTypes.swift
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:88: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:90: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
[36/40] Compiling SkiaKit Matrix.swift
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:150:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
148 | var x, y, r, b : Int32
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:151:87: error: cannot convert value of type 'Float' to expected argument type 'Double'
149 |
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:59: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:152:88: error: cannot convert value of type 'Float' to expected argument type 'Double'
150 | x = Int32 ((outwards && value.width > 0) ? floor (Float (value.left)) : ceil (Float (value.left)));
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
154 |
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:60: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
/host/spi-builder-workspace/Sources/SkiaKit/MathTypes.swift:153:90: error: cannot convert value of type 'Float' to expected argument type 'Double'
151 | y = Int32 ((outwards && value.height > 0) ? floor (Float (value.top)) : ceil (Float (value.top)));
152 | r = Int32 ((outwards && value.width < 0) ? floor (Float (value.right)) : ceil (Float (value.right)));
153 | b = Int32 ((outwards && value.height < 0) ? floor (Float (value.bottom)) : ceil (Float (value.bottom)));
| `- error: cannot convert value of type 'Float' to expected argument type 'Double'
154 |
155 | return IRect (left: x, top: y, right: r, bottom: b)
[37/40] Compiling SkiaKit Surface.swift
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:101:66: error: cannot find type 'ushort' in scope
99 | /// - Parameter y: The y position for this run
100 | /// - Parameter glyphs: The glyphs to use for this run
101 | public func addRun (font: Font, x: Float, y: Float, glyphs: [ushort])
| `- error: cannot find type 'ushort' in scope
102 | {
103 | let run = allocateRun(font: font, count: Int32 (glyphs.count), x: x, y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:111:66: error: cannot find type 'ushort' in scope
109 | /// - Parameter y: The vertical offset within the blob.
110 | /// - Parameter glyphs: The glyphs to use for this run
111 | public func addHorizontalRun (font: Font, y: Float, glyphs: [ushort], positions: [Float])
| `- error: cannot find type 'ushort' in scope
112 | {
113 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:122:66: error: cannot find type 'ushort' in scope
120 | /// - Parameter y: The vertical offset within the blob.
121 | /// - Parameter glyphs: The glyphs to use for this run
122 | public func addPositionedRun (font: Font, y: Float, glyphs: [ushort], positions: [Point])
| `- error: cannot find type 'ushort' in scope
123 | {
124 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
[38/40] Compiling SkiaKit SurfaceProperties.swift
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:101:66: error: cannot find type 'ushort' in scope
99 | /// - Parameter y: The y position for this run
100 | /// - Parameter glyphs: The glyphs to use for this run
101 | public func addRun (font: Font, x: Float, y: Float, glyphs: [ushort])
| `- error: cannot find type 'ushort' in scope
102 | {
103 | let run = allocateRun(font: font, count: Int32 (glyphs.count), x: x, y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:111:66: error: cannot find type 'ushort' in scope
109 | /// - Parameter y: The vertical offset within the blob.
110 | /// - Parameter glyphs: The glyphs to use for this run
111 | public func addHorizontalRun (font: Font, y: Float, glyphs: [ushort], positions: [Float])
| `- error: cannot find type 'ushort' in scope
112 | {
113 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:122:66: error: cannot find type 'ushort' in scope
120 | /// - Parameter y: The vertical offset within the blob.
121 | /// - Parameter glyphs: The glyphs to use for this run
122 | public func addPositionedRun (font: Font, y: Float, glyphs: [ushort], positions: [Point])
| `- error: cannot find type 'ushort' in scope
123 | {
124 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
[39/40] Compiling SkiaKit TextBlob.swift
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:101:66: error: cannot find type 'ushort' in scope
99 | /// - Parameter y: The y position for this run
100 | /// - Parameter glyphs: The glyphs to use for this run
101 | public func addRun (font: Font, x: Float, y: Float, glyphs: [ushort])
| `- error: cannot find type 'ushort' in scope
102 | {
103 | let run = allocateRun(font: font, count: Int32 (glyphs.count), x: x, y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:111:66: error: cannot find type 'ushort' in scope
109 | /// - Parameter y: The vertical offset within the blob.
110 | /// - Parameter glyphs: The glyphs to use for this run
111 | public func addHorizontalRun (font: Font, y: Float, glyphs: [ushort], positions: [Float])
| `- error: cannot find type 'ushort' in scope
112 | {
113 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:122:66: error: cannot find type 'ushort' in scope
120 | /// - Parameter y: The vertical offset within the blob.
121 | /// - Parameter glyphs: The glyphs to use for this run
122 | public func addPositionedRun (font: Font, y: Float, glyphs: [ushort], positions: [Point])
| `- error: cannot find type 'ushort' in scope
123 | {
124 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
[40/40] Compiling SkiaKit Typeface.swift
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:101:66: error: cannot find type 'ushort' in scope
99 | /// - Parameter y: The y position for this run
100 | /// - Parameter glyphs: The glyphs to use for this run
101 | public func addRun (font: Font, x: Float, y: Float, glyphs: [ushort])
| `- error: cannot find type 'ushort' in scope
102 | {
103 | let run = allocateRun(font: font, count: Int32 (glyphs.count), x: x, y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:111:66: error: cannot find type 'ushort' in scope
109 | /// - Parameter y: The vertical offset within the blob.
110 | /// - Parameter glyphs: The glyphs to use for this run
111 | public func addHorizontalRun (font: Font, y: Float, glyphs: [ushort], positions: [Float])
| `- error: cannot find type 'ushort' in scope
112 | {
113 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
/host/spi-builder-workspace/Sources/SkiaKit/TextBlob.swift:122:66: error: cannot find type 'ushort' in scope
120 | /// - Parameter y: The vertical offset within the blob.
121 | /// - Parameter glyphs: The glyphs to use for this run
122 | public func addPositionedRun (font: Font, y: Float, glyphs: [ushort], positions: [Point])
| `- error: cannot find type 'ushort' in scope
123 | {
124 | let run = allocateHorizontalRun(font: font, count: Int32 (glyphs.count), y: y)
BUILD FAILURE 6.2 android