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
|
|
|
|
|
|
|
fn textureSampleCompareLevel_f8121c() {
|
|
|
|
var res : f32 = textureSampleCompareLevel(arg_0, arg_1, vec2<f32>(), 1.0, vec2<i32>());
|
|
|
|
}
|
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@stage(vertex)
|
|
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
2021-06-14 15:29:34 +00:00
|
|
|
textureSampleCompareLevel_f8121c();
|
|
|
|
return vec4<f32>();
|
|
|
|
}
|
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@stage(fragment)
|
2021-06-14 15:29:34 +00:00
|
|
|
fn fragment_main() {
|
|
|
|
textureSampleCompareLevel_f8121c();
|
|
|
|
}
|
|
|
|
|
2022-01-19 22:46:57 +00:00
|
|
|
@stage(compute) @workgroup_size(1)
|
2021-06-14 15:29:34 +00:00
|
|
|
fn compute_main() {
|
|
|
|
textureSampleCompareLevel_f8121c();
|
|
|
|
}
|