From 433a21b6ffbdc2065b1568c2b6927fd7fc5d058d Mon Sep 17 00:00:00 2001 From: Gaia <83567777+mothfuzz@users.noreply.github.com> Date: Thu, 22 May 2025 19:46:31 -0500 Subject: [PATCH] Update wgpu.js mipmapFilter is being ignored and defaulting to .Nearest on web platforms due to incorrect capitalization of the field name --- 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 578c1aefc..6104417df 100644 --- a/vendor/wgpu/wgpu.js +++ b/vendor/wgpu/wgpu.js @@ -2033,7 +2033,7 @@ class WebGPUInterface { addressModeW: this.enumeration("AddressMode", off(4)), magFilter: this.enumeration("FilterMode", off(4)), minFilter: this.enumeration("FilterMode", off(4)), - mipMapFilter: this.enumeration("MipmapFilterMode", off(4)), + mipmapFilter: this.enumeration("MipmapFilterMode", off(4)), lodMinClamp: this.mem.loadF32(off(4)), lodMaxClamp: this.mem.loadF32(off(4)), compare: this.enumeration("CompareFunction", off(4)),