blob: 9e78052321e460ab6cb4fa627717665dfe7d563f [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void dot_5a4c8f() {
float res = 3.0f;
}
float4 vertex_main_inner() {
dot_5a4c8f();
return float4(0.0f);
}
fragment void fragment_main() {
dot_5a4c8f();
}
kernel void compute_main() {
dot_5a4c8f();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}