mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-07-03 11:46:09 +00:00
These have not been in the spec for a long time. The read_write access mode can be used instead. Fixed: tint:1342 Change-Id: I01ffc343d2d2f9df9d7028bba4548c749616c65c Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/93500 Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Dan Sinclair <dsinclair@chromium.org> Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
20 lines
322 B
WebGPU Shading Language
20 lines
322 B
WebGPU Shading Language
struct Constants {
|
|
zero: u32,
|
|
};
|
|
@group(1) @binding(0) var<uniform> constants: Constants;
|
|
|
|
struct Result {
|
|
value: u32,
|
|
};
|
|
@group(1) @binding(1) var<storage, read_write> result: Result;
|
|
|
|
struct S {
|
|
data: array<u32, 3>,
|
|
};
|
|
var<private> s: S;
|
|
|
|
@compute @workgroup_size(1)
|
|
fn main() {
|
|
s.data[constants.zero] = 0u;
|
|
}
|