You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
221 B
18 lines
221 B
4 months ago
|
#version 450
|
||
|
|
||
|
const bool condition = false;
|
||
|
|
||
|
uniform ubname {
|
||
|
bool b;
|
||
|
} ubinst;
|
||
|
|
||
|
bool foo(bool b)
|
||
|
{
|
||
|
return b != condition;
|
||
|
}
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = foo(ubinst.b) ? vec4(0.0) : vec4(1.0);
|
||
|
}
|