(functionValue)
| 271 | function arrayTexture1(mode) { |
| 272 | const gpu = new GPU({ mode }); |
| 273 | function addOne(functionValue) { |
| 274 | return functionValue[this.thread.x] + 1; |
| 275 | } |
| 276 | gpu.addFunction(addOne); |
| 277 | const texture1 = gpu.createKernel(function() { |
| 278 | return 1; |
no outgoing calls
no test coverage detected
searching dependent graphs…