Ben Clayton | c64ca23 | 2022-06-29 00:55:36 +0000 | [diff] [blame] | 1 | #include <metal_stdlib> |
2 | |||||
3 | using namespace metal; | ||||
4 | void const_decls() { | ||||
5 | } | ||||
6 | |||||
7 | struct tint_symbol_1 { | ||||
8 | float4 value [[color(0)]]; | ||||
9 | }; | ||||
10 | |||||
11 | float4 tint_symbol_inner() { | ||||
12 | return float4(0.0f); | ||||
13 | } | ||||
14 | |||||
15 | fragment tint_symbol_1 tint_symbol() { | ||||
16 | float4 const inner_result = tint_symbol_inner(); | ||||
17 | tint_symbol_1 wrapper_result = {}; | ||||
18 | wrapper_result.value = inner_result; | ||||
19 | return wrapper_result; | ||||
20 | } | ||||
21 |