blob: 28a7447babaf4c75e90b7cdf7be84de98db055e2 [file] [log] [blame]
dan sinclair91e27f22022-11-03 17:10:49 +00001void floor_953774() {
2 float3 res = (1.0f).xxx;
3}
4
dan sinclair91e27f22022-11-03 17:10:49 +00005void fragment_main() {
6 floor_953774();
7 return;
8}
9
10[numthreads(1, 1, 1)]
11void compute_main() {
12 floor_953774();
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 floor_953774();
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}