mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-13 00:26:00 +00:00
Performs output validation with spirv-val for SPIR-V (as before), HLSL validation with DXC, and MSL validation with the Metal Shader Compiler. Disable HLSL tests that fail to validate Bug: tint:812 Change-Id: If78c351b4e23c7fb50d333eacf9ee7cc81d18564 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/51280 Reviewed-by: Antonio Maiorano <amaiorano@google.com> Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com>
31 lines
457 B
WebGPU Shading Language
31 lines
457 B
WebGPU Shading Language
type Arr = array<u32, 50>;
|
|
|
|
[[block]]
|
|
struct Buf {
|
|
count : u32;
|
|
data : Arr;
|
|
};
|
|
|
|
[[group(0), binding(0)]] var<storage> b : [[access(read_write)]] Buf;
|
|
|
|
[[stage(compute)]]
|
|
fn main() {
|
|
var i : u32 = 0u;
|
|
loop {
|
|
if ((i >= b.count)) {
|
|
break;
|
|
}
|
|
let p : ptr<storage, u32> = &(b.data[i]);
|
|
if (((i % 2u) == 0u)) {
|
|
continue;
|
|
}
|
|
*(p) = 0u;
|
|
|
|
continuing {
|
|
*(p) = (*(p) * 2u);
|
|
i = (i + 1u);
|
|
}
|
|
}
|
|
return;
|
|
}
|