mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-04 09:24:04 +00:00
8 lines
135 B
GLSL
8 lines
135 B
GLSL
|
#version 450
|
||
|
layout(location=1) in highp vec4 v;
|
||
|
void main (void)
|
||
|
{
|
||
|
if (v == vec4(0.1,0.2,0.3,0.4)) discard;
|
||
|
else return;
|
||
|
}
|