mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-04-14 12:52:31 -05:00
10 lines
112 B
Plaintext
10 lines
112 B
Plaintext
in vec2 Texcoord;
|
|
|
|
OUTPUT
|
|
|
|
uniform sampler2D tex;
|
|
|
|
void main() {
|
|
outColor = texture(tex, Texcoord);
|
|
}
|