moonlight-qt/app/shaders/egl_overlay.vert

9 lines
172 B
GLSL
Raw Normal View History

attribute vec2 aPosition; // 2D: X,Y
attribute vec2 aTexCoord;
varying vec2 vTexCoord;
void main() {
vTexCoord = aTexCoord;
gl_Position = vec4(aPosition, 0, 1);
}