blob: bbd793eb61b8bfa2ed87e892fcc7b2bcefd4e936 [file] [log] [blame]
// flags: --pixel-local-attachments 0=1 --pixel-local-attachment-formats 0=R32Uint
enable chromium_experimental_pixel_local;
struct PixelLocal {
a : u32,
}
var<pixel_local> V : PixelLocal;
@fragment fn f() {
let p = &V;
(*p).a = 42;
}