blob: b856117fac56de4a476ae1eebb86e630111cae3e [file] [log] [blame]
dan sinclairacce83d2022-11-15 18:39:38 +00001void min_364910() {
2 float3 res = (1.0f).xxx;
3}
4
dan sinclairacce83d2022-11-15 18:39:38 +00005void fragment_main() {
6 min_364910();
7 return;
8}
9
10[numthreads(1, 1, 1)]
11void compute_main() {
12 min_364910();
13 return;
14}
Natalie Chouinarde9027182024-06-13 18:50:19 +000015
16struct VertexOutput {
17 float4 pos;
18};
19struct tint_symbol_1 {
20 float4 pos : SV_Position;
21};
22
23VertexOutput vertex_main_inner() {
24 VertexOutput tint_symbol = (VertexOutput)0;
25 tint_symbol.pos = (0.0f).xxxx;
26 min_364910();
27 return tint_symbol;
28}
29
30tint_symbol_1 vertex_main() {
31 VertexOutput inner_result = vertex_main_inner();
32 tint_symbol_1 wrapper_result = (tint_symbol_1)0;
33 wrapper_result.pos = inner_result.pos;
34 return wrapper_result;
35}