blob: afb0864c5d075932f5a1642d25a76d61756207cb [file] [log] [blame]
//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;
void tanh_6289fd() {
float3 res = float3(0.76159417629241943359f);
}
struct VertexOutput {
float4 pos;
};
fragment void fragment_main() {
tanh_6289fd();
return;
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;
void tanh_6289fd() {
float3 res = float3(0.76159417629241943359f);
}
struct VertexOutput {
float4 pos;
};
kernel void compute_main() {
tanh_6289fd();
return;
}
//
// vertex_main
//
#include <metal_stdlib>
using namespace metal;
void tanh_6289fd() {
float3 res = float3(0.76159417629241943359f);
}
struct VertexOutput {
float4 pos;
};
struct tint_symbol {
float4 pos [[position]];
};
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
tanh_6289fd();
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;
}