mirror of
https://github.com/libretro/glslang.git
synced 2024-12-04 05:54:16 +00:00
38d039d063
Add a test for unreachable merge block. Update test results with the new order: mainly delaying merge blocks and removing unreachable ones.
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;
|
|
}
|