mirror of
https://github.com/libretro/RetroArch
synced 2025-02-10 03:39:56 +00:00
8 lines
125 B
Plaintext
8 lines
125 B
Plaintext
#version 310 es
|
|
|
|
void main()
|
|
{
|
|
gl_Position = (vec4(1.0, 2.0, 3.0, 4.0) * float((gl_VertexIndex + gl_InstanceIndex)));
|
|
}
|
|
|