blob: 0f958a849be628a8ebe1f6c9ebdfee3298939a05 [file] [log] [blame]
#version 310 es
struct frexp_result_f32 {
float fract;
int exp;
};
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
frexp_result_f32 res = frexp_result_f32(0.625f, 1);
float tint_symbol_2 = res.fract;
int tint_symbol_3 = res.exp;
}