2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
|
|
|
precision mediump float;
|
|
|
|
|
|
|
|
const int slen = 4;
|
|
|
|
const uint ulen = 4u;
|
|
|
|
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);
|
|
|
|
signed_literal = unsigned_constant;
|
|
|
|
signed_constant = unsigned_literal;
|
|
|
|
}
|
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
|
|
|
}
|