From 1e7496ceb74db18457aa459a8420e339c4650a1a Mon Sep 17 00:00:00 2001 From: Gaia <83567777+mothfuzz@users.noreply.github.com> Date: Wed, 8 Jul 2026 03:25:13 -0500 Subject: [PATCH 1/2] Update wgpu.js Fix missing => after wgpuComputePassEncoderSetImmediates --- vendor/wgpu/wgpu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/wgpu/wgpu.js b/vendor/wgpu/wgpu.js index 6839532fa..73db077c5 100644 --- a/vendor/wgpu/wgpu.js +++ b/vendor/wgpu/wgpu.js @@ -1812,7 +1812,7 @@ class WebGPUInterface { * @param {number} data * @param {number|BigInt} size */ - wgpuComputePassEncoderSetImmediates: (computePassEncoderIdx, offset, data, size) { + wgpuComputePassEncoderSetImmediates: (computePassEncoderIdx, offset, data, size) => { console.warn("wgpuComputePassEncoderSetImmediates: unimplemented in browsers at the time of writing"); }, From bd31effa17fa0600e552eabacf44f5b4df4426d2 Mon Sep 17 00:00:00 2001 From: Gaia <83567777+mothfuzz@users.noreply.github.com> Date: Wed, 8 Jul 2026 03:29:54 -0500 Subject: [PATCH 2/2] Update wgpu.js --- vendor/wgpu/wgpu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vendor/wgpu/wgpu.js b/vendor/wgpu/wgpu.js index 73db077c5..7bdf3aa5e 100644 --- a/vendor/wgpu/wgpu.js +++ b/vendor/wgpu/wgpu.js @@ -2712,7 +2712,7 @@ class WebGPUInterface { * @param {number} data * @param {number|BigInt} size */ - wgpuRenderBundleEncoderSetImmediates: (renderBundleEncoderIdx, offset, data, size) { + wgpuRenderBundleEncoderSetImmediates: (renderBundleEncoderIdx, offset, data, size) => { console.warn("wgpuRenderBundleEncoderSetImmediates: unimplemented in browsers at the time of writing"); }, @@ -2919,7 +2919,7 @@ class WebGPUInterface { * @param {number} data * @param {number|BigInt} size */ - wgpuRenderPassEncoderSetImmediates: (renderPassEncoderIdx, offset, data, size) { + wgpuRenderPassEncoderSetImmediates: (renderPassEncoderIdx, offset, data, size) => { console.warn("wgpuRenderPassEncoderSetImmediates: unimplemented in browsers at the time of writing"); },