diff options
author | Dante Issaias <dante@issaias.com> | 2022-07-20 01:22:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-20 02:22:26 +0200 |
commit | 2b1f145c3e51cf9885c073b78bd5882e80d258e3 (patch) | |
tree | face88f9a6d6d109ebf8f659a59bc74e6f6ae8ee /tools/wgpu_sync.js | |
parent | 649536e2669eb496fc2d4dacd92fd1d6dbed50a7 (diff) |
chore(ext): update webgpu (#15059)
Diffstat (limited to 'tools/wgpu_sync.js')
-rwxr-xr-x | tools/wgpu_sync.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/wgpu_sync.js b/tools/wgpu_sync.js index 3c6217709..eda5c5e18 100755 --- a/tools/wgpu_sync.js +++ b/tools/wgpu_sync.js @@ -3,10 +3,9 @@ import { join, ROOT_PATH, walk } from "./util.js"; -// const COMMIT = "c00e471274b6c21acda89b4b13d41742c0285d71"; // Release 12 -const COMMIT = "c4aa3eaed020a640fec06b48f0a5ea93490d41bb"; // tip of PR (needs merge) -const REPO = "kvark/wgpu"; -const V_WGPU = "0.12"; +const COMMIT = "076df1a56812eee01614b7a3a4c88798012e79ab"; +const REPO = "gfx-rs/wgpu"; +const V_WGPU = "0.13"; const TARGET_DIR = join(ROOT_PATH, "ext", "webgpu"); async function bash(subcmd, opts = {}) { |