2022-01-19 22:46:57 +00:00
|
|
|
@group(1) @binding(0) var arg_0 : texture_cube_array<f32>;
|
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
|
|
|
|
|
|
|
fn textureSampleLevel_0bdd9a() {
|
2022-11-04 17:06:03 +00:00
|
|
|
var res : vec4<f32> = textureSampleLevel(arg_0, arg_1, vec3<f32>(1.0f), 1i, 1.0f);
|
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> {
|
2021-06-03 11:26:17 +00:00
|
|
|
textureSampleLevel_0bdd9a();
|
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() {
|
|
|
|
textureSampleLevel_0bdd9a();
|
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@compute @workgroup_size(1)
|
2021-06-03 11:26:17 +00:00
|
|
|
fn compute_main() {
|
|
|
|
textureSampleLevel_0bdd9a();
|
|
|
|
}
|