From f4a9db350fbf00a6cb13a2c030b925cfd5218ed2 Mon Sep 17 00:00:00 2001 From: Leo K Date: Tue, 24 Aug 2021 13:29:42 +0200 Subject: chore(ext/webgpu): update wgpu to 0.10.0 (#11781) Co-authored-by: Luca Casonato --- cli/tests/testdata/webgpu_computepass_shader.wgsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tests/testdata') diff --git a/cli/tests/testdata/webgpu_computepass_shader.wgsl b/cli/tests/testdata/webgpu_computepass_shader.wgsl index 7d4748e2a..9fc79eeba 100644 --- a/cli/tests/testdata/webgpu_computepass_shader.wgsl +++ b/cli/tests/testdata/webgpu_computepass_shader.wgsl @@ -3,7 +3,7 @@ struct PrimeIndices { data: [[stride(4)]] array; }; // this is used as both input and output for convenience [[group(0), binding(0)]] -var v_indices: [[access(read_write)]] PrimeIndices; +var v_indices: PrimeIndices; // The Collatz Conjecture states that for any integer n: // If n is even, n = n/2 // If n is odd, n = 3n+1 -- cgit v1.2.3