Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-19 | refactor(ext/webgpu): align error messages (#25719) | Ian Bull | |
Aligns the error messages in the ext/webgpu folder to be in-line with the Deno style guide. https://github.com/denoland/deno/issues/25269 | |||
2024-09-18 | tests: re-enable WebGPU tests on macOS aarch64 (#25702) | Luca Casonato | |
2024-08-01 | fix(ext/webgpu): assign missing `constants` property of shader about ↵ | Hajime-san | |
`GPUDevice.createRenderPipeline[Async]` (#24803) fixes https://github.com/denoland/deno/issues/24287 | |||
2024-05-20 | fix(ext/webgpu): Allow `depthClearValue` to be undefined when `depthLoadOp` ↵ | chirsz | |
is not "clear" (#23850) | |||
2024-05-10 | fix(ext/webgpu): invalidate GPUAdapter when a device is created (#23752) | Leo Kettmeir | |
This removes the need for using `Deno.resources` to close the gpuadapter resource, while being more spec compliant. | |||
2024-05-06 | fix(ext/webgpu): correctly validate GPUExtent3D, GPUOrigin3D, GPUOrigin2D & ↵ | Hajime-san | |
GPUColor (#23413) | |||
2024-02-10 | chore: move cli/tests/ -> tests/ (#22369) | Matt Mastracci | |
This looks like a massive PR, but it's only a move from cli/tests -> tests, and updates of relative paths for files. This is the first step towards aggregate all of the integration test files under tests/, which will lead to a set of integration tests that can run without the CLI binary being built. While we could leave these tests under `cli`, it would require us to keep a more complex directory structure for the various test runners. In addition, we have a lot of complexity to ignore various test files in the `cli` project itself (cargo publish exclusion rules, autotests = false, etc). And finally, the `tests/` folder will eventually house the `test_ffi`, `test_napi` and other testing code, reducing the size of the root repo directory. For easier review, the extremely large and noisy "move" is in the first commit (with no changes -- just a move), while the remainder of the changes to actual files is in the second commit. |