We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: Deno 2.2.4 System: macOS Sequoia 15.0 (Apple M2)
Hello, I have a problem with GPUDevice.lost in deno_webgpu.
There is a definition of lost getter in deno_webgpu and the lost property exists on the type definition, but GPUDevice.lost seems to be undefined.
lost
const adapter = (await navigator.gpu.requestAdapter())!; const device = await adapter.requestDevice(); console.log(device.lost);
$ deno -v deno 2.2.4 $ deno run -A test.ts lost: undefined
The text was updated successfully, but these errors were encountered:
@littledivy could you take a look?
Sorry, something went wrong.
No branches or pull requests
Version: Deno 2.2.4
System: macOS Sequoia 15.0 (Apple M2)
Hello, I have a problem with GPUDevice.lost in deno_webgpu.
There is a definition of
lost
getter in deno_webgpu and thelost
property exists on the type definition, but GPUDevice.lost seems to be undefined.Reproduction: run below script
The text was updated successfully, but these errors were encountered: