27 lines
476 B
Plaintext
27 lines
476 B
Plaintext
|
#version 310 es
|
||
|
|
||
|
struct frexp_result {
|
||
|
float fract;
|
||
|
int exp;
|
||
|
};
|
||
|
|
||
|
frexp_result tint_frexp(float param_0) {
|
||
|
frexp_result result;
|
||
|
result.fract = frexp(param_0, result.exp);
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
|
||
|
void tint_symbol() {
|
||
|
float tint_symbol_1 = 1.25f;
|
||
|
frexp_result res = tint_frexp(tint_symbol_1);
|
||
|
float tint_symbol_2 = res.fract;
|
||
|
int tint_symbol_3 = res.exp;
|
||
|
}
|
||
|
|
||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||
|
void main() {
|
||
|
tint_symbol();
|
||
|
return;
|
||
|
}
|