blob: 9b3466cfdee8582718726f399ed1068260a75b60 [file] [log] [blame] [edit]
// flags: --pixel_local_attachments 0=1 --pixel_local_attachment_formats 0=R32Uint
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);
}