2022-01-19 22:46:57 +00:00
|
|
|
@group(1) @binding(0) var arg_0 : texture_depth_2d;
|
2021-06-03 11:26:17 +00:00
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@group(1) @binding(1) var arg_1 : sampler;
|
2021-06-03 11:26:17 +00:00
|
|
|
|
2022-06-02 14:36:10 +00:00
|
|
|
fn textureSampleLevel_749baf() {
|
2022-11-04 17:06:03 +00:00
|
|
|
var res : f32 = textureSampleLevel(arg_0, arg_1, vec2<f32>(1.0f), 1i, vec2<i32>(1i));
|
2021-06-03 11:26:17 +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
|
|
|
textureSampleLevel_749baf();
|
2021-06-04 17:31:48 +00:00
|
|
|
return vec4<f32>();
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@fragment
|
2021-06-03 11:26:17 +00:00
|
|
|
fn fragment_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
textureSampleLevel_749baf();
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@compute @workgroup_size(1)
|
2021-06-03 11:26:17 +00:00
|
|
|
fn compute_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
textureSampleLevel_749baf();
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|