From 35196eab279340376929dd75ed717ef4830e2fa9 Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Thu, 16 Mar 2023 19:29:32 -0400 Subject: BREAKING(unstable): remove WebGPU (#18094) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR _**temporarily**_ removes WebGPU (which has behind the `--unstable` flag in Deno), due to performance complications due to its presence. It will be brought back in the future; as a point of reference, Chrome will ship WebGPU to stable on 26/04/2023. --------- Co-authored-by: Bartek IwaƄczuk --- cli/tests/testdata/webgpu/hellotriangle_shader.wgsl | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 cli/tests/testdata/webgpu/hellotriangle_shader.wgsl (limited to 'cli/tests/testdata/webgpu/hellotriangle_shader.wgsl') diff --git a/cli/tests/testdata/webgpu/hellotriangle_shader.wgsl b/cli/tests/testdata/webgpu/hellotriangle_shader.wgsl deleted file mode 100644 index f84ccfe94..000000000 --- a/cli/tests/testdata/webgpu/hellotriangle_shader.wgsl +++ /dev/null @@ -1,11 +0,0 @@ -@vertex -fn vs_main(@builtin(vertex_index) in_vertex_index: u32) -> @builtin(position) vec4 { - let x = f32(i32(in_vertex_index) - 1); - let y = f32(i32(in_vertex_index & 1u) * 2 - 1); - return vec4(x, y, 0.0, 1.0); -} - -@fragment -fn fs_main() -> @location(0) vec4 { - return vec4(1.0, 0.0, 0.0, 1.0); -} -- cgit v1.2.3