├── .eslintrc.js ├── .github └── workflows │ └── build-and-deploy.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── package.json ├── rollup.config.js ├── src ├── capabilities-info.ts └── webgpu-memory.ts ├── test ├── assert.js ├── index.html ├── index.js ├── mocha-support.js ├── mocha.css ├── mocha.js ├── puppeteer.js ├── src │ └── js │ │ └── example-inject.js └── tests │ ├── buffer-tests.js │ ├── canvas-tests.js │ ├── device-tests.js │ ├── query-set-tests.js │ └── texture-tests.js ├── tsconfig.json └── webgpu-memory.png /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": [ 3 | ] 4 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/capabilities-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/src/capabilities-info.ts -------------------------------------------------------------------------------- /src/webgpu-memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/src/webgpu-memory.ts -------------------------------------------------------------------------------- /test/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/assert.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha-support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/mocha-support.js -------------------------------------------------------------------------------- /test/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/mocha.css -------------------------------------------------------------------------------- /test/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/mocha.js -------------------------------------------------------------------------------- /test/puppeteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/puppeteer.js -------------------------------------------------------------------------------- /test/src/js/example-inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/src/js/example-inject.js -------------------------------------------------------------------------------- /test/tests/buffer-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/tests/buffer-tests.js -------------------------------------------------------------------------------- /test/tests/canvas-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/tests/canvas-tests.js -------------------------------------------------------------------------------- /test/tests/device-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/tests/device-tests.js -------------------------------------------------------------------------------- /test/tests/query-set-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/tests/query-set-tests.js -------------------------------------------------------------------------------- /test/tests/texture-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/test/tests/texture-tests.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webgpu-memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/webgpu-memory/HEAD/webgpu-memory.png --------------------------------------------------------------------------------