mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-04-14 21:02:32 -05:00
14 lines
217 B
Plaintext
14 lines
217 B
Plaintext
in vec3 position;
|
|
in vec2 texcoord;
|
|
|
|
uniform float texScale;
|
|
uniform mat4 mvpMatrix;
|
|
|
|
out vec2 Texcoord;
|
|
|
|
void main() {
|
|
Texcoord = texcoord * texScale;
|
|
|
|
gl_Position = mvpMatrix * vec4(position, 1.0);
|
|
}
|