blob: 29a81aebd23da561ee5873cb8d957de27bb91a0a [file] [log] [blame]
[[group(0), binding(0)]] var t : texture_2d<f32>;
[[group(0), binding(1)]] var s : sampler;
[[stage(fragment)]]
fn main() {
let x = t;
let a = s;
ignore(1);
let y = x;
let b = a;
ignore(2);
let z = y;
let c = b;
ignore(textureSample(z, c, vec2<f32>(1.0, 2.0)));
}