James Price | bb0496e | 2021-06-03 09:38:34 +0000 | [diff] [blame] | 1 | struct tint_symbol_1 { |
| 2 | int loc0 : TEXCOORD0; |
| 3 | uint loc1 : TEXCOORD1; |
| 4 | float loc2 : TEXCOORD2; |
| 5 | float4 loc3 : TEXCOORD3; |
| 6 | }; |
| 7 | struct tint_symbol_2 { |
| 8 | float4 value : SV_Position; |
| 9 | }; |
| 10 | |
James Price | a5d73ce | 2021-08-04 22:15:28 +0000 | [diff] [blame] | 11 | float4 main_inner(int loc0, uint loc1, float loc2, float4 loc3) { |
James Price | bb0496e | 2021-06-03 09:38:34 +0000 | [diff] [blame] | 12 | const int i = loc0; |
| 13 | const uint u = loc1; |
| 14 | const float f = loc2; |
| 15 | const float4 v = loc3; |
Ben Clayton | e9f8b09 | 2022-06-01 13:14:39 +0000 | [diff] [blame] | 16 | return (0.0f).xxxx; |
James Price | a5d73ce | 2021-08-04 22:15:28 +0000 | [diff] [blame] | 17 | } |
| 18 | |
| 19 | tint_symbol_2 main(tint_symbol_1 tint_symbol) { |
| 20 | const float4 inner_result = main_inner(tint_symbol.loc0, tint_symbol.loc1, tint_symbol.loc2, tint_symbol.loc3); |
| 21 | tint_symbol_2 wrapper_result = (tint_symbol_2)0; |
| 22 | wrapper_result.value = inner_result; |
| 23 | return wrapper_result; |
James Price | bb0496e | 2021-06-03 09:38:34 +0000 | [diff] [blame] | 24 | } |