12 lines
172 B
Plaintext
12 lines
172 B
Plaintext
|
#version 310 es
|
||
|
|
||
|
void f() {
|
||
|
bool r = bool(uint(true) & uint(false));
|
||
|
}
|
||
|
|
||
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
||
|
void main() {
|
||
|
f();
|
||
|
return;
|
||
|
}
|