blob: 0984fe81906cfbf1a66e5da8237f7073950f7ac5 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
half2 tint_acosh(half2 x) {
return select(acosh(x), half2(0.0h), (x < half2(1.0h)));
}
half2 acosh_5f49d8() {
half2 arg_0 = half2(1.54296875h);
half2 res = tint_acosh(arg_0);
return res;
}
fragment void fragment_main(device half2* tint_symbol_1 [[buffer(0)]]) {
*(tint_symbol_1) = acosh_5f49d8();
return;
}
kernel void compute_main(device half2* tint_symbol_2 [[buffer(0)]]) {
*(tint_symbol_2) = acosh_5f49d8();
return;
}
struct VertexOutput {
float4 pos;
half2 prevent_dce;
};
struct tint_symbol {
half2 prevent_dce [[user(locn0)]] [[flat]];
float4 pos [[position]];
};
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
out.prevent_dce = acosh_5f49d8();
return out;
}
vertex tint_symbol vertex_main() {
VertexOutput const inner_result = vertex_main_inner();
tint_symbol wrapper_result = {};
wrapper_result.pos = inner_result.pos;
wrapper_result.prevent_dce = inner_result.prevent_dce;
return wrapper_result;
}