mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 03:32:46 +00:00
7 lines
96 B
GLSL
7 lines
96 B
GLSL
|
#version 310 es
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = vec4(float(gl_VertexIndex + gl_InstanceIndex));
|
||
|
}
|