Contents

update(_:)

Updates the transform data in place synchronously on the CPU.

Declaration

final func update<R, E>(_ body: @_lifetime(0: copy 0) (inout MutableSpan<float4x4>) throws(E) -> R) throws(E) -> R where E : Error, R : ~Copyable

Parameters

  • body:

    A closure that receives a mutable span over the transform data for in-place modification.

Discussion

You pass a closure that receives a mutable span representing the transform data, which the closure may modify. This span is valid only for the duration of the closure.