Can't get WebGPU to work with BJS

Hi, I’m trying to initialize WebGPU with bjs to no avail.

I’m trying with this one: GitHub - RaananW/babylonjs-webpack-es6: Babylon.js basic scene with typescript, webpack, es6 modules, editorconfig, eslint, hot loading and more. Will even make coffee if you ask nicely.

I have WebGPU support, I can run the demos on the playground, even on the local playground. For some reason anything else doesn’t work for me, always the same error.

Instantiating the WebGPU engine works fine, but the “await webgpu.initAsync()” call fails with the error above.

Any ideas would be appreciated!

It works for me, at least in the fresh cloned repo at this url http://localhost:8080/?engine=webgpu

Ah I think I got it. It is due to the requestAdapterInfo() being deprecated. Bjs already merged a PR that solves this here: WebGPU: Fix requestAdapterInfo removed from the spec by Popov72 · Pull Request #15702 · BabylonJS/Babylon.js · GitHub

So only thing is to update the babylonjs package and it works.