mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-06-18 21:15:27 -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);
|
|
}
|