blob: eba14f029d6040ac8c007a05f8f3d6028e29079e [file]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
void dot_c11efe() {
int res = 3;
}
fragment void fragment_main() {
dot_c11efe();
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
void dot_c11efe() {
int res = 3;
}
kernel void compute_main() {
dot_c11efe();
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
};
void dot_c11efe() {
int res = 3;
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
dot_c11efe();
return out;
}
vertex vertex_main_outputs vertex_main() {
vertex_main_outputs tint_wrapper_result = {};
tint_wrapper_result.VertexOutput_pos = vertex_main_inner().pos;
return tint_wrapper_result;
}