I'm trying some test coding with swift, Metal and iOS. I have an MTLBuffer and an Array:
var uint16Array:[UInt16] = Array(repeating: 0, count: 16)
var mtlBuffer:MTLBuffer = device.makeBuffer(bytes: uint16Array, length: 32)!
If I update the array
uint16Array[0] = 22
uint16Array[7] = 22
uint16Array[15] = 22
then I can update the mtlbuffer:
mtlBuffer.contents().copyMemory(from: uint16Array, byteCount:32)
But... If I want to copy from array index != 0.... How to do?.
"pseudocode":
mtlBuffer.contents().copyMemory(from: uint16Array[4], byteCount:22)
(not works, of course)
I have tried some code with "withUnsafeBufferPointer", "UnsafeRawPointer(uint16Array + 4)", etc but without success.
Access the non-zero index of uint16Array via withUnsafePointer