mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +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);
|
|
}
|
|
|