2022-06-28 15:27:44 +00:00
|
|
|
#include <metal_stdlib>
|
|
|
|
|
|
|
|
using namespace metal;
|
|
|
|
float3 tint_atanh(float3 x) {
|
|
|
|
return select(atanh(x), float3(0.0f), (x >= float3(1.0f)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void atanh_440cca() {
|
2022-10-25 13:08:45 +00:00
|
|
|
float3 arg_0 = float3(0.5f);
|
2022-06-28 15:27:44 +00:00
|
|
|
float3 res = tint_atanh(arg_0);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct tint_symbol {
|
|
|
|
float4 value [[position]];
|
|
|
|
};
|
|
|
|
|
|
|
|
float4 vertex_main_inner() {
|
|
|
|
atanh_440cca();
|
|
|
|
return float4(0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
vertex tint_symbol vertex_main() {
|
|
|
|
float4 const inner_result = vertex_main_inner();
|
|
|
|
tint_symbol wrapper_result = {};
|
|
|
|
wrapper_result.value = inner_result;
|
|
|
|
return wrapper_result;
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment void fragment_main() {
|
|
|
|
atanh_440cca();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
kernel void compute_main() {
|
|
|
|
atanh_440cca();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|