dan sinclair | 91e27f2 | 2022-11-03 17:10:49 +0000 | [diff] [blame] | 1 | void floor_953774() { |
| 2 | float3 res = (1.0f).xxx; |
| 3 | } |
| 4 | |
dan sinclair | 91e27f2 | 2022-11-03 17:10:49 +0000 | [diff] [blame] | 5 | void fragment_main() { |
| 6 | floor_953774(); |
| 7 | return; |
| 8 | } |
| 9 | |
| 10 | [numthreads(1, 1, 1)] |
| 11 | void compute_main() { |
| 12 | floor_953774(); |
| 13 | return; |
| 14 | } |
Natalie Chouinard | e902718 | 2024-06-13 18:50:19 +0000 | [diff] [blame] | 15 | |
| 16 | struct VertexOutput { |
| 17 | float4 pos; |
| 18 | }; |
| 19 | struct tint_symbol_1 { |
| 20 | float4 pos : SV_Position; |
| 21 | }; |
| 22 | |
| 23 | VertexOutput 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 | |
| 30 | tint_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 | } |