mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-10 21:03:31 +00:00
10 lines
103 B
Plaintext
10 lines
103 B
Plaintext
in vec2 Texcoord;
|
|
|
|
OUTPUT
|
|
|
|
uniform sampler2D tex;
|
|
|
|
void main() {
|
|
outColor = texture(tex, Texcoord);
|
|
}
|