16 lines
191 B
Plaintext
16 lines
191 B
Plaintext
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
|
||
|
uniform highp sampler2D t;
|
||
|
|
||
|
|
||
|
void tint_symbol() {
|
||
|
vec4 res = textureGather(t, vec2(0.0f, 0.0f), 3);
|
||
|
return;
|
||
|
}
|
||
|
void main() {
|
||
|
tint_symbol();
|
||
|
}
|
||
|
|
||
|
|