{
binding: 0,
visibility: GPUShaderStage.COMPUTE,
- buffer: {
- type: "uniform"
- }
+ buffer: { type: "uniform" }
},
{
binding: 1,
visibility: GPUShaderStage.COMPUTE,
- buffer: {
- type: "storage"
- }
+ buffer: { type: "storage" }
}
]
});
static reset(loss) {
console.dir(loss);
console.warn(`Device lost. Reinitializing...`);
- this.#cpuBuffer?.destroy();
- this.#gpuBuffer?.destroy();
- this.#uboBuffer?.destroy();
+ if (this.#cpuBuffer) this.#cpuBuffer.destroy();
+ if (this.#gpuBuffer) this.#gpuBuffer.destroy();
+ if (this.#uboBuffer) this.#uboBuffer.destroy();
this.#busy = false;
this.init();
}