blob: 56428b9328038f3041b3f12f1ccd14fe194b6be8 [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., 2.)));
}