mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-01 07:01:12 +00:00
11 lines
193 B
GLSL
11 lines
193 B
GLSL
#version 300 es
|
|
void main() {
|
|
switch (gl_InstanceID) {
|
|
case 0: return;
|
|
case 1: gl_Position = vec4(0.0); break;
|
|
case 2: return;
|
|
case 3: return;
|
|
}
|
|
gl_Position.x += 0.123;
|
|
}
|