mirror of
https://github.com/libretro/glslang.git
synced 2025-01-24 08:27:22 +00:00
41 lines
675 B
GLSL
41 lines
675 B
GLSL
|
#define ON1
|
||
|
#define ON2
|
||
|
|
||
|
float sum = 0.0;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
#if defined(ON1) && (defined(OFF) || defined(ON2))
|
||
|
//yes
|
||
|
sum += 1.0;
|
||
|
#endif
|
||
|
|
||
|
#if !defined(ON1) || (defined(OFF) || (!defined(OFF2) && defined(ON2)))
|
||
|
//yes
|
||
|
sum += 20.0;
|
||
|
#endif
|
||
|
|
||
|
#if defined(ON1) && (defined(OFF) || !defined(ON2))
|
||
|
//no
|
||
|
sum += 0.1;
|
||
|
#endif
|
||
|
|
||
|
#if !defined(ON1) || (defined(OFF) || !defined(OFF2) && !defined(ON2))
|
||
|
//no
|
||
|
sum += 0.2;
|
||
|
#endif
|
||
|
|
||
|
#if !defined(ON1) || !defined(OFF) || defined(ON2) && defined(OFF2)
|
||
|
//yes
|
||
|
sum += 300.0;
|
||
|
#endif
|
||
|
|
||
|
#if (!defined(ON1) || !defined(OFF) || defined(ON2)) && defined(OFF2)
|
||
|
//no
|
||
|
sum += 0.4;
|
||
|
#endif
|
||
|
|
||
|
// sum should be 321.0
|
||
|
gl_Position = vec4(sum);
|
||
|
}
|