9 lines
110 B
Plaintext
9 lines
110 B
Plaintext
// Can't assign to type "const uniform int32"
|
|
|
|
void foo(int x) {
|
|
foreach_unique (u in x)
|
|
++u;
|
|
}
|
|
|
|
|