2021-05-18 09:24:18 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
2022-02-09 23:55:51 +00:00
|
|
|
void bar() {
|
|
|
|
}
|
|
|
|
|
2021-05-18 09:24:18 +00:00
|
|
|
struct tint_symbol_1 {
|
|
|
|
float4 value [[color(0)]];
|
|
|
|
};
|
|
|
|
|
2021-08-04 22:15:28 +00:00
|
|
|
float4 tint_symbol_inner() {
|
2022-06-01 10:08:29 +00:00
|
|
|
float2 a = float2(0.0f);
|
2021-05-18 09:24:18 +00:00
|
|
|
bar();
|
2021-08-04 22:15:28 +00:00
|
|
|
return float4(0.400000006f, 0.400000006f, 0.800000012f, 1.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment tint_symbol_1 tint_symbol() {
|
|
|
|
float4 const inner_result = tint_symbol_inner();
|
|
|
|
tint_symbol_1 wrapper_result = {};
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
2021-05-18 09:24:18 +00:00
|
|
|
}
|
|
|
|
|