mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-06-05 14:13:39 +00:00
Change-Id: If694489a079698df7d767967898d6c5238fe9f54 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/59821 Auto-Submit: James Price <jrprice@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
31 lines
477 B
WebGPU Shading Language
31 lines
477 B
WebGPU Shading Language
type Arr = array<u32, 50>;
|
|
|
|
[[block]]
|
|
struct Buf {
|
|
count : u32;
|
|
data : Arr;
|
|
};
|
|
|
|
[[group(0), binding(0)]] var<storage, read_write> b : Buf;
|
|
|
|
[[stage(compute), workgroup_size(1)]]
|
|
fn main() {
|
|
var i : u32 = 0u;
|
|
loop {
|
|
if ((i >= b.count)) {
|
|
break;
|
|
}
|
|
let p : ptr<storage, u32, read_write> = &(b.data[i]);
|
|
if (((i % 2u) == 0u)) {
|
|
continue;
|
|
}
|
|
*(p) = 0u;
|
|
|
|
continuing {
|
|
*(p) = (*(p) * 2u);
|
|
i = (i + 1u);
|
|
}
|
|
}
|
|
return;
|
|
}
|