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.
10 lines
222 B
10 lines
222 B
4 months ago
|
#version 420
|
||
|
|
||
|
void f();
|
||
|
uniform sampler2D s;
|
||
|
|
||
|
void main() {
|
||
|
vec2 v = s.rr; // Swizzles do not apply to samplers
|
||
|
f().xx; // Scalar swizzle does not apply to void
|
||
|
f().xy; // Vector swizzle does not apply either
|
||
|
}
|