mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-06-20 18:24:43 +00:00
11 lines
171 B
V Shell
11 lines
171 B
V Shell
attribute vec4 inPosition;
|
|
attribute mediump vec4 inTexcoord;
|
|
varying mediump vec2 varTexcoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = inPosition;
|
|
varTexcoord = inTexcoord.xy;
|
|
}
|
|
|