Skip to content

Instantly share code, notes, and snippets.

View grind086's full-sized avatar

Rob Grindeland grind086

  • Minnesota, United States
View GitHub Profile
@grind086
grind086 / helper.ts
Created May 4, 2018 23:13
Zero-copy passing rust `Vec`s to JavaScript `TypedArray`s and back.
/**
* Takes a pointer to a wasm `TypedArrayData` and returns an appropriate JavaScript `TypedArray`
* @param ptr A pointer to a `TypedArrayData` struct
* @param memory The `WebAssembly.Memory` buffer containing the pointer
* @param useCapacity If true the returned array will have a length determined by the total allocated capacity instead
* of the number of elements.
*/
export function pointerToTypedArray(ptr: number, buffer: ArrayBuffer, useCapacity = false) {
const [structPtr, structLen, structCap, structKind] = new Uint32Array(buffer, ptr, 4);
const arraySize = useCapacity ? structCap : structLen;