mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-09 11:20:56 +00:00
10 lines
136 B
Plaintext
10 lines
136 B
Plaintext
in vec2 position;
|
|
in vec2 texcoord;
|
|
|
|
out vec2 Texcoord;
|
|
|
|
void main() {
|
|
Texcoord = texcoord;
|
|
gl_Position = vec4(position, 0.0, 1.0);
|
|
}
|