2022-01-21 18:40:18 +00:00
|
|
|
SKIP: FAILED
|
|
|
|
|
|
|
|
#version 310 es
|
|
|
|
|
|
|
|
struct modf_result {
|
|
|
|
float fract;
|
|
|
|
float whole;
|
|
|
|
};
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2022-01-21 18:40:18 +00:00
|
|
|
modf_result tint_modf(float param_0) {
|
|
|
|
float whole;
|
|
|
|
float fract = modf(param_0, whole);
|
|
|
|
modf_result result = {fract, whole};
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
void unused_entry_point() {
|
|
|
|
return;
|
|
|
|
}
|
2022-02-10 16:22:28 +00:00
|
|
|
void tint_symbol() {
|
|
|
|
float tint_symbol_1 = tint_modf(1.0f).whole;
|
2022-01-21 18:40:18 +00:00
|
|
|
}
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2022-01-21 18:40:18 +00:00
|
|
|
Error parsing GLSL shader:
|
2022-02-07 18:49:46 +00:00
|
|
|
ERROR: 0:11: '{ } style initializers' : not supported with this profile: es
|
|
|
|
ERROR: 0:11: '' : compilation terminated
|
2022-01-21 18:40:18 +00:00
|
|
|
ERROR: 2 compilation errors. No code generated.
|
|
|
|
|
|
|
|
|
|
|
|
|