2022-01-19 22:46:57 +00:00
|
|
|
@group(1) @binding(0) var arg_0 : texture_depth_2d;
|
2021-06-14 15:29:34 +00:00
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@group(1) @binding(1) var arg_1 : sampler_comparison;
|
2021-06-14 15:29:34 +00:00
|
|
|
|
2022-06-02 14:36:10 +00:00
|
|
|
fn textureSampleCompareLevel_7f2b9a() {
|
2022-07-26 14:27:25 +00:00
|
|
|
var res : f32 = textureSampleCompareLevel(arg_0, arg_1, vec2<f32>(), 1.0f, vec2<i32>());
|
2021-06-14 15:29:34 +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
|
|
|
textureSampleCompareLevel_7f2b9a();
|
2021-06-14 15:29:34 +00:00
|
|
|
return vec4<f32>();
|
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@fragment
|
2021-06-14 15:29:34 +00:00
|
|
|
fn fragment_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
textureSampleCompareLevel_7f2b9a();
|
2021-06-14 15:29:34 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@compute @workgroup_size(1)
|
2021-06-14 15:29:34 +00:00
|
|
|
fn compute_main() {
|
2022-06-02 14:36:10 +00:00
|
|
|
textureSampleCompareLevel_7f2b9a();
|
2021-06-14 15:29:34 +00:00
|
|
|
}
|