]> zoso.dev Git - libnemo.git/commitdiff
Extend time interval between check for GPU device to save mobile device cycles.
authorChris Duncan <chris@zoso.dev>
Tue, 7 Jan 2025 21:45:24 +0000 (13:45 -0800)
committerChris Duncan <chris@zoso.dev>
Tue, 7 Jan 2025 21:45:24 +0000 (13:45 -0800)
src/lib/workers/powgpu.ts

index 65620c656a8d1f2312524bf8fd4a3c3cdcc526ed..054a13b49b148a3f6bf70bc0a060bcdd3722e368 100644 (file)
@@ -469,7 +469,7 @@ export class PowGpu extends WorkerInterface {
                // Ensure WebGPU is initialized before calculating, up to a max time frame
                while (PowGpu.#device == null && performance.now() < 8000) {
                        await new Promise(resolve => {
-                               setTimeout(resolve, 100)
+                               setTimeout(resolve, 500)
                        })
                }
                if (PowGpu.#device == null) throw new Error(`WebGPU device failed to load.`)