blob: 09683d2fe6f0e9546c7dab167c0dd469c81c264f [file] [log] [blame]
struct frexp_result_vec4_f16 {
vector<float16_t, 4> fract;
int4 exp;
};
frexp_result_vec4_f16 tint_frexp(vector<float16_t, 4> param_0) {
vector<float16_t, 4> exp;
vector<float16_t, 4> fract = sign(param_0) * frexp(param_0, exp);
frexp_result_vec4_f16 result = {fract, int4(exp)};
return result;
}
void frexp_3dd21e() {
vector<float16_t, 4> arg_0 = (float16_t(1.0h)).xxxx;
frexp_result_vec4_f16 res = tint_frexp(arg_0);
}
void fragment_main() {
frexp_3dd21e();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
frexp_3dd21e();
return;
}
struct VertexOutput {
float4 pos;
};
struct tint_symbol_1 {
float4 pos : SV_Position;
};
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
frexp_3dd21e();
return tint_symbol;
}
tint_symbol_1 vertex_main() {
VertexOutput inner_result = vertex_main_inner();
tint_symbol_1 wrapper_result = (tint_symbol_1)0;
wrapper_result.pos = inner_result.pos;
return wrapper_result;
}