2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
2023-03-09 19:58:23 +00:00
|
|
|
precision highp float;
|
2021-11-16 15:15:36 +00:00
|
|
|
|
|
|
|
void tint_symbol() {
|
|
|
|
float signed_literal[4] = float[4](0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
float unsigned_literal[4] = float[4](0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
float signed_constant[4] = float[4](0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
float unsigned_constant[4] = float[4](0.0f, 0.0f, 0.0f, 0.0f);
|
2023-02-24 21:02:40 +00:00
|
|
|
float shr_const_expr[4] = float[4](0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
unsigned_literal = signed_literal;
|
|
|
|
signed_constant = signed_literal;
|
|
|
|
unsigned_constant = signed_literal;
|
|
|
|
shr_const_expr = signed_literal;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
2022-01-26 16:48:55 +00:00
|
|
|
|
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
|
|
|
}
|