(program: WebGPUProgram)
| 841 | return uniformShader; |
| 842 | } |
| 843 | function isFlatDispatchLayout(program: WebGPUProgram): boolean { |
| 844 | if (program.dispatchLayout.hasOwnProperty('y') && |
| 845 | program.dispatchLayout.y.length !== 0) { |
| 846 | return false; |
| 847 | } |
| 848 | if (program.dispatchLayout.hasOwnProperty('z') && |
| 849 | program.dispatchLayout.z.length !== 0) { |
| 850 | return false; |
| 851 | } |
| 852 | return true; |
| 853 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…