From ba932782817b1961aac89f741bf05a2c32c1bf15 Mon Sep 17 00:00:00 2001 From: Hajime-san <41257923+Hajime-san@users.noreply.github.com> Date: Fri, 2 Aug 2024 03:19:25 +0900 Subject: fix(ext/webgpu): assign missing `constants` property of shader about `GPUDevice.createRenderPipeline[Async]` (#24803) fixes https://github.com/denoland/deno/issues/24287 --- tests/testdata/webgpu/hellotriangle_shader.wgsl | 9 +++++++++ tests/unit/webgpu_test.ts | 8 ++++++++ 2 files changed, 17 insertions(+) (limited to 'tests') diff --git a/tests/testdata/webgpu/hellotriangle_shader.wgsl b/tests/testdata/webgpu/hellotriangle_shader.wgsl index f84ccfe94..9359c11ad 100644 --- a/tests/testdata/webgpu/hellotriangle_shader.wgsl +++ b/tests/testdata/webgpu/hellotriangle_shader.wgsl @@ -1,5 +1,11 @@ +// only test purpose +override value: f32; + @vertex fn vs_main(@builtin(vertex_index) in_vertex_index: u32) -> @builtin(position) vec4 { + // only test purpose + _ = value; + 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); @@ -7,5 +13,8 @@ fn vs_main(@builtin(vertex_index) in_vertex_index: u32) -> @builtin(position) ve @fragment fn fs_main() -> @location(0) vec4 { + // only test purpose + _ = value; + return vec4(1.0, 0.0, 0.0, 1.0); } diff --git a/tests/unit/webgpu_test.ts b/tests/unit/webgpu_test.ts index 9947ea32b..43b24e41a 100644 --- a/tests/unit/webgpu_test.ts +++ b/tests/unit/webgpu_test.ts @@ -129,10 +129,18 @@ Deno.test({ vertex: { module: shaderModule, entryPoint: "vs_main", + // only test purpose + constants: { + value: 0.5, + }, }, fragment: { module: shaderModule, entryPoint: "fs_main", + // only test purpose + constants: { + value: 0.5, + }, targets: [ { format: "rgba8unorm-srgb", -- cgit v1.2.3