mirror of
https://github.com/libretro/RetroArch
synced 2025-02-15 00:40:06 +00:00
9 lines
102 B
GLSL
9 lines
102 B
GLSL
|
#version 310 es
|
||
|
|
||
|
uniform sampler2D tex;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = texture(tex, vec2(0.4, 0.6));
|
||
|
}
|