2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
|
|
|
|
|
|
|
struct modf_result {
|
|
|
|
float fract;
|
|
|
|
float whole;
|
|
|
|
};
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2021-11-16 15:15:36 +00:00
|
|
|
modf_result tint_modf(float param_0) {
|
2022-02-11 13:41:23 +00:00
|
|
|
modf_result result;
|
|
|
|
result.fract = modf(param_0, result.whole);
|
2021-11-16 15:15:36 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void tint_symbol() {
|
|
|
|
modf_result res = tint_modf(1.230000019f);
|
|
|
|
float tint_symbol_1 = res.fract;
|
|
|
|
float whole = res.whole;
|
|
|
|
}
|
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
|
|
|
}
|