mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
14 lines
221 B
GLSL
Executable File
14 lines
221 B
GLSL
Executable File
precision highp float;
|
|
|
|
uniform mat4 mvpMatrix;
|
|
|
|
attribute vec4 inPosition;
|
|
attribute vec2 inTexcoord;
|
|
varying vec2 varTexcoord;
|
|
|
|
void main (void)
|
|
{
|
|
gl_Position = mvpMatrix * inPosition;
|
|
varTexcoord = inTexcoord;
|
|
}
|