]> zoso.dev Git - libnemo.git/commitdiff
Upload new bundle for testing iOS.
authorChris Duncan <chris@zoso.dev>
Thu, 9 Jan 2025 23:02:40 +0000 (15:02 -0800)
committerChris Duncan <chris@zoso.dev>
Thu, 9 Jan 2025 23:02:40 +0000 (15:02 -0800)
global.min.js

index 5b81559cd46179e9d64f2276c183cc96caf5d689..b136d6d0499a259351827ef3c0283c40c4b68dff 100644 (file)
@@ -11426,16 +11426,12 @@ var init_gpu = __esm({
             {
               binding: 0,
               visibility: GPUShaderStage.COMPUTE,
-              buffer: {
-                type: "uniform"
-              }
+              buffer: { type: "uniform" }
             },
             {
               binding: 1,
               visibility: GPUShaderStage.COMPUTE,
-              buffer: {
-                type: "storage"
-              }
+              buffer: { type: "storage" }
             }
           ]
         });
@@ -11454,9 +11450,9 @@ var init_gpu = __esm({
       static reset(loss) {
         console.dir(loss);
         console.warn(`Device lost. Reinitializing...`);
-        this.#cpuBuffer?.destroy();
-        this.#gpuBuffer?.destroy();
-        this.#uboBuffer?.destroy();
+        if (this.#cpuBuffer) this.#cpuBuffer.destroy();
+        if (this.#gpuBuffer) this.#gpuBuffer.destroy();
+        if (this.#uboBuffer) this.#uboBuffer.destroy();
         this.#busy = false;
         this.init();
       }