WebGPUComputePipelines constructor

WebGPUComputePipelines(
  1. dynamic device
)

Implementation

WebGPUComputePipelines(device) {
  this.device = device;

  this.pipelines = new WeakMap();
  this.stages = {"compute": new WeakMap()};
}