mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +00:00
10 lines
183 B
GLSL
10 lines
183 B
GLSL
#version 310 es
|
|
|
|
uniform int SPIRV_Cross_BaseInstance;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(1.0, 2.0, 3.0, 4.0) * float(gl_VertexID + (gl_InstanceID + SPIRV_Cross_BaseInstance));
|
|
}
|
|
|