blob: b0d81fb6027da54047b5b8a6d9a9f1184bb65a37 [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
void max_caa3d7() {
int res = 1;
}
struct VertexOutput {
float4 pos;
};
fragment void fragment_main() {
max_caa3d7();
return;
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
void max_caa3d7() {
int res = 1;
}
struct VertexOutput {
float4 pos;
};
kernel void compute_main() {
max_caa3d7();
return;
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
void max_caa3d7() {
int res = 1;
}
struct VertexOutput {
float4 pos;
};
struct tint_symbol {
float4 pos [[position]];
};
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
max_caa3d7();
return out;
}
vertex tint_symbol vertex_main() {
VertexOutput const inner_result = vertex_main_inner();
tint_symbol wrapper_result = {};
wrapper_result.pos = inner_result.pos;
return wrapper_result;
}