webgpu-debug-helper
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

webgpu-debug-helper

A WebGPU debugging helper script

This script makes it easier to debug WebGPU apps.

You can use it in your own projects via a script OR, you can use it as an extension.

At the moment, if you want to use it to help debug workers, you'll need to use this script version.

What does it do?

  • It makes as many errors as possible to return the line they happened on

    This is in contrast to normal WebGPU where errors are returned asynchronously and so the command that caused the error is long forgotten.

  • It adds errors to command encoders and pass encoders

    In normal WebGPU, command encoders and pass encoders often do not report errors. Rather, they record the error, make the encoder as invalid, and then only report the error when the encoder is ended/finished. This can make it hard to find errors.

    With this script, many of these types of errors will be generated immediately.

Usage:

First off, I recommend the extension as it's just easier to use. Generally you don't want to run with this script enabled. Rather, run your code as normal. When you see an error, if it's not obvious, turn on this script via the extension and check the JavaScript console. You should see messages with stacks. Click the links in the stacks to go to the code that generated the error.

Otherwise, to use the script directly:

import './webgpu-debug-helper.js';

or

import 'https://greggman.github.io/webgpu-debug-helper/dist/0.x/webgpu-debug-helper.js';

There is nothing else to do. The webgpu-debug-helper will wrap the WebGPU API and start generating error messages.

If you wanted to import programmatically you could do something like this

if (debug) {
  await import('./webgpu-debug-helper.js');
}

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i webgpu-debug-helper

Weekly Downloads

2

Version

0.0.2

License

MIT

Unpacked Size

25 kB

Total Files

6

Last publish

Collaborators

  • greggman