2021-06-03 11:26:17 +00:00
|
|
|
[[group(1), binding(0)]] var arg_0 : texture_3d<i32>;
|
|
|
|
|
|
|
|
fn textureNumLevels_9da7a5() {
|
|
|
|
var res : i32 = textureNumLevels(arg_0);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[stage(vertex)]]
|
2021-06-04 17:31:48 +00:00
|
|
|
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
|
2021-06-03 11:26:17 +00:00
|
|
|
textureNumLevels_9da7a5();
|
2021-06-04 17:31:48 +00:00
|
|
|
return vec4<f32>();
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[[stage(fragment)]]
|
|
|
|
fn fragment_main() {
|
|
|
|
textureNumLevels_9da7a5();
|
|
|
|
}
|
|
|
|
|
|
|
|
[[stage(compute)]]
|
|
|
|
fn compute_main() {
|
|
|
|
textureNumLevels_9da7a5();
|
|
|
|
}
|