mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
10 lines
156 B
GLSL
10 lines
156 B
GLSL
precision mediump float;
|
|
|
|
varying mediump vec2 varTexcoord;
|
|
uniform sampler2D texture;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = texture2D(texture, varTexcoord);
|
|
}
|