2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
|
|
|
|
2022-11-23 19:57:00 +00:00
|
|
|
struct frexp_result_f32 {
|
2022-11-14 15:29:29 +00:00
|
|
|
float fract;
|
2021-11-16 15:15:36 +00:00
|
|
|
int exp;
|
|
|
|
};
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2021-11-16 15:15:36 +00:00
|
|
|
|
|
|
|
void tint_symbol() {
|
2023-03-02 21:28:45 +00:00
|
|
|
frexp_result_f32 res = frexp_result_f32(0.61500000953674316406f, 1);
|
2021-11-16 15:15:36 +00:00
|
|
|
int tint_symbol_1 = res.exp;
|
2022-11-14 15:29:29 +00:00
|
|
|
float tint_symbol_2 = res.fract;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2022-01-28 22:36:58 +00:00
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
2021-11-16 15:15:36 +00:00
|
|
|
void main() {
|
|
|
|
tint_symbol();
|
2022-01-28 22:36:58 +00:00
|
|
|
return;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|