mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-16 14:22:28 +00:00
9 lines
172 B
GLSL
9 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);
|
||
|
}
|