New Image() in gltfLoader on worker

Hello, I have a problem that when loading a model using GLTFLoader, one of the models crashes with an error. new Image() is not available in worker, and I have everything done through offScreenCanvas. Should I remove the special textures from the model or is there a solution?


The EXT_texture_avif and EXT_texture_webp glTF extensions are not supported in Web Workers with GLTFLoader.

If you want to go that route, you need an updated version of the glTF asset that does not use the above extensions. Alternatively, you could use a custom version of GLTFLoader that implements both extensions with Web Worker support.

@donmccurdy Do you think we still need to explicitly test support for WebP? The detectSupport() is the one that relies on Image which isn’t supported in Workers.

According to caniuse, WebP support looks excellent nowadays.

@Mugen87 I’d be fine with removing the WebP check – yes. I think if users need to support these much older browsers they can create compatible versions of their assets. For AVIF maybe the same is true? Let’s just test that on the modern/evergreen browsers, I haven’t done much with AVIF so far.

1 Like

According to caniuse AVIF is a so called “Baseline Feature” since January 2024. That means all latest devices and major browsers support it.

It seems we can risk removing the check for both WebP and AVIF. If someone complains, we can restore the check for AVIF.

1 Like