(testName: string, tests: () => void)
| 125 | * @param tests |
| 126 | */ |
| 127 | export function describeMathGPU(testName: string, tests: () => void) { |
| 128 | describeWithFlags( |
| 129 | testName, {predicate: testEnv => testEnv.backendName === 'webgl'}, () => { |
| 130 | tests(); |
| 131 | }); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Describe tests to be run on WebGL2 GPU only. |
no test coverage detected
searching dependent graphs…