2022-01-19 22:46:57 +00:00
|
|
|
@group(1) @binding(1) var arg_1 : texture_2d<f32>;
|
2021-12-08 19:54:08 +00:00
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@group(1) @binding(2) var arg_2 : sampler;
|
2021-12-08 19:54:08 +00:00
|
|
|
|
|
|
|
fn textureGather_bd0b1e() {
|
|
|
|
var res : vec4<f32> = textureGather(1, arg_1, arg_2, vec2<f32>());
|
|
|
|
}
|
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@stage(vertex)
|
|
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
2021-12-08 19:54:08 +00:00
|
|
|
textureGather_bd0b1e();
|
|
|
|
return vec4<f32>();
|
|
|
|
}
|
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@stage(fragment)
|
2021-12-08 19:54:08 +00:00
|
|
|
fn fragment_main() {
|
|
|
|
textureGather_bd0b1e();
|
|
|
|
}
|
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@stage(compute) @workgroup_size(1)
|
2021-12-08 19:54:08 +00:00
|
|
|
fn compute_main() {
|
|
|
|
textureGather_bd0b1e();
|
|
|
|
}
|