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
|
|
|
|
2022-06-02 14:36:10 +00:00
|
|
|
fn textureGather_5266da() {
|
2022-11-04 17:06:03 +00:00
|
|
|
var res : vec4<f32> = textureGather(1i, arg_1, arg_2, vec2<f32>(1.0f));
|
2021-12-08 19:54:08 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@vertex
|
2022-01-19 22:46:57 +00:00
|
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
2022-06-02 14:36:10 +00:00
|
|
|
textureGather_5266da();
|
2021-12-08 19:54:08 +00:00
|
|
|
return vec4<f32>();
|
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@fragment
|
2021-12-08 19:54:08 +00:00
|
|
|
fn fragment_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
textureGather_5266da();
|
2021-12-08 19:54:08 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@compute @workgroup_size(1)
|
2021-12-08 19:54:08 +00:00
|
|
|
fn compute_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
textureGather_5266da();
|
2021-12-08 19:54:08 +00:00
|
|
|
}
|