mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-05-18 23:50:16 +00:00
d1f43ca258
We still ostensibly support GLES 2.0 GPUs.
8 lines
171 B
GLSL
8 lines
171 B
GLSL
attribute vec2 aPosition; // 2D: X,Y
|
|
attribute vec2 aTexCoord;
|
|
varying vec2 vTexCoord;
|
|
|
|
void main() {
|
|
vTexCoord = aTexCoord;
|
|
gl_Position = vec4(aPosition, 0, 1);
|
|
} |