blob: 742191baea5f7431e18cba18d60731cee76249f1 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void clamp_8b1eaa() {
int3 res = int3(1);
}
float4 vertex_main_inner() {
clamp_8b1eaa();
return float4(0.0f);
}
fragment void fragment_main() {
clamp_8b1eaa();
}
kernel void compute_main() {
clamp_8b1eaa();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}