blob: f53fb928d6c53c825774b13fd4c05468ca037c88 [file] [log] [blame]
struct frexp_result_vec2_f32 {
float2 fract;
int2 exp;
};
frexp_result_vec2_f32 tint_frexp(float2 param_0) {
float2 exp;
float2 fract = sign(param_0) * frexp(param_0, exp);
frexp_result_vec2_f32 result = {fract, int2(exp)};
return result;
}
void frexp_eb2421() {
float2 arg_0 = (1.0f).xx;
frexp_result_vec2_f32 res = tint_frexp(arg_0);
}
void fragment_main() {
frexp_eb2421();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
frexp_eb2421();
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_eb2421();
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;
}