(count: number, buffer: GPUBuffer)
| 16 | buffer: GPUBuffer; |
| 17 | |
| 18 | constructor(count: number, buffer: GPUBuffer) |
| 19 | { |
| 20 | this.count = count; |
| 21 | this.buffer = buffer; |
| 22 | } |
| 23 | }; |
| 24 | |
| 25 | /* Marching Cubes execution has 5 steps |
nothing calls this directly
no outgoing calls
no test coverage detected