blob: f4401175003bc23bcb906995123291a5def18e9f [file] [log] [blame]
@group(1) @binding(0) var arg_0 : texture_2d<f32>;
@group(1) @binding(1) var arg_1 : sampler;
fn textureSampleGrad_521263() {
var res : vec4<f32> = textureSampleGrad(arg_0, arg_1, vec2<f32>(), vec2<f32>(), vec2<f32>());
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
textureSampleGrad_521263();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
textureSampleGrad_521263();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
textureSampleGrad_521263();
}