21 lines
400 B
Plaintext
21 lines
400 B
Plaintext
|
#version 310 es
|
||
|
|
||
|
struct frexp_result {
|
||
|
float fract;
|
||
|
int exp;
|
||
|
};
|
||
|
|
||
|
|
||
|
void tint_symbol() {
|
||
|
frexp_result tint_symbol_4 = frexp_result(0.625f, 1);
|
||
|
float tint_symbol_2 = tint_symbol_4.fract;
|
||
|
frexp_result tint_symbol_5 = frexp_result(0.625f, 1);
|
||
|
int tint_symbol_3 = tint_symbol_5.exp;
|
||
|
}
|
||
|
|
||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||
|
void main() {
|
||
|
tint_symbol();
|
||
|
return;
|
||
|
}
|