mirror of
https://github.com/libretro/RetroArch
synced 2025-02-13 12:40:47 +00:00
8 lines
124 B
GLSL
8 lines
124 B
GLSL
|
#version 460
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = vec4(float(gl_BaseVertex), float(gl_BaseInstance), float(gl_DrawID), 1.0);
|
||
|
}
|
||
|
|