mirror of
https://github.com/libretro/RetroArch
synced 2025-04-17 02:43:03 +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);
|
|
}
|
|
|