2022-01-06 15:31:21 +00:00
|
|
|
#version 310 es
|
|
|
|
precision mediump float;
|
|
|
|
|
2022-01-24 17:17:22 +00:00
|
|
|
uniform highp isampler2D t_s;
|
2022-01-06 15:31:21 +00:00
|
|
|
|
|
|
|
void tint_symbol() {
|
2022-01-24 17:17:22 +00:00
|
|
|
ivec4 res = textureGather(t_s, vec2(0.0f, 0.0f), 3);
|
2022-01-06 15:31:21 +00:00
|
|
|
}
|
2022-01-26 16:48:55 +00:00
|
|
|
|
2022-01-06 15:31:21 +00:00
|
|
|
void main() {
|
|
|
|
tint_symbol();
|
2022-01-28 22:36:58 +00:00
|
|
|
return;
|
2022-01-06 15:31:21 +00:00
|
|
|
}
|