blob: 82a0ffd965575dcb04fe862a2150b168321c8954 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct frexp_result_vec2_f32 {
float2 fract;
int2 exp;
};
struct VertexOutput {
float4 pos;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
};
void frexp_6fb3ad() {
frexp_result_vec2_f32 res = frexp_result_vec2_f32{.fract=float2(0.5f), .exp=int2(1)};
}
fragment void fragment_main() {
frexp_6fb3ad();
}
kernel void compute_main() {
frexp_6fb3ad();
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
frexp_6fb3ad();
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;
}