// | |
// fragment_main | |
// | |
#include <metal_stdlib> | |
using namespace metal; | |
void log_f60cc7() { | |
float2 res = float2(0.0f); | |
} | |
fragment void fragment_main() { | |
log_f60cc7(); | |
} | |
// | |
// compute_main | |
// | |
#include <metal_stdlib> | |
using namespace metal; | |
void log_f60cc7() { | |
float2 res = float2(0.0f); | |
} | |
kernel void compute_main() { | |
log_f60cc7(); | |
} | |
// | |
// vertex_main | |
// | |
#include <metal_stdlib> | |
using namespace metal; | |
struct VertexOutput { | |
float4 pos; | |
}; | |
struct vertex_main_outputs { | |
float4 VertexOutput_pos [[position]]; | |
}; | |
void log_f60cc7() { | |
float2 res = float2(0.0f); | |
} | |
VertexOutput vertex_main_inner() { | |
VertexOutput out = {}; | |
out.pos = float4(0.0f); | |
log_f60cc7(); | |
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; | |
} |