RetroArch/android/andretro/res/raw/vertex_shader.glsl
twinaphex ac8448c844 (Android)Add meancoot's andretro frontend - will need some
heavy maintenance to make up-to-date again
2013-07-14 21:06:41 +02:00

15 lines
210 B
GLSL

attribute vec2 pos;
attribute vec2 tex;
varying vec2 texCoord;
void main()
{
gl_Position.x = pos.x;
gl_Position.y = pos.y;
gl_Position.z = 0.0;
gl_Position.w = 1.0;
texCoord = tex;
}