mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 05:34:17 +00:00
e5bcc793e5
Fixes #405
8 lines
172 B
GLSL
8 lines
172 B
GLSL
attribute vec2 aPosition; // 2D: X,Y
|
|
attribute vec2 aTexCoord;
|
|
varying vec2 vTexCoord;
|
|
|
|
void main() {
|
|
vTexCoord = aTexCoord;
|
|
gl_Position = vec4(aPosition, 0, 1);
|
|
}
|