mirror of
https://github.com/RPCS3/glslang.git
synced 2024-11-30 22:51:06 +00:00
8 lines
145 B
GLSL
8 lines
145 B
GLSL
#version 420
|
|
|
|
void f();
|
|
|
|
void main() {
|
|
f().xx; // Scalar swizzle does not apply to void
|
|
f().xy; // Vector swizzle does not apply either
|
|
} |