2021-06-03 11:26:17 +00:00
|
|
|
[[group(1), binding(0)]] var arg_0 : texture_cube<f32>;
|
|
|
|
|
|
|
|
[[group(1), binding(1)]] var arg_1 : sampler;
|
|
|
|
|
|
|
|
fn textureSampleLevel_c32df7() {
|
|
|
|
var res : vec4<f32> = textureSampleLevel(arg_0, arg_1, vec3<f32>(), 1.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
|
|
|
textureSampleLevel_c32df7();
|
2021-06-04 17:31:48 +00:00
|
|
|
return vec4<f32>();
|
2021-06-03 11:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[[stage(fragment)]]
|
|
|
|
fn fragment_main() {
|
|
|
|
textureSampleLevel_c32df7();
|
|
|
|
}
|
|
|
|
|
2021-06-29 18:39:44 +00:00
|
|
|
[[stage(compute), workgroup_size(1)]]
|
2021-06-03 11:26:17 +00:00
|
|
|
fn compute_main() {
|
|
|
|
textureSampleLevel_c32df7();
|
|
|
|
}
|