(device: GPUDevice)
| 27 | #computePipeline: GPUComputePipeline; |
| 28 | |
| 29 | private constructor(device: GPUDevice) |
| 30 | { |
| 31 | this.#device = device; |
| 32 | |
| 33 | this.#maxDispatchSize = device.limits.maxComputeWorkgroupsPerDimension; |
| 34 | } |
| 35 | |
| 36 | static async create(device: GPUDevice) |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected