• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1diagnostic(off, derivative_uniformity);
2diagnostic(off, chromium.unreachable_code);
3struct Outputs {
4  result: i32,
5};
6@group(0) @binding(0) var<storage, read_write> _storage0 : Outputs;
7fn _skslMain() {
8  {
9    _storage0.result = 1;
10  }
11}
12@compute @workgroup_size(12, 34, 56) fn main() {
13  _skslMain();
14}
15