blob: 137ee5a8639e015a05319ac0590e293b43db5bc7 [file] [log] [blame] [edit]
enable chromium_experimental_pixel_local;
struct PixelLocal {
a : u32,
}
var<pixel_local> P : PixelLocal;
@fragment
fn f() -> @location(0) vec4f {
P.a += 42;
return vec4f(2);
}