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.

8 lines
129 B

out vec4 sk_FragColor;
vec4 main() {
mat4 m44 = mat4(123.0);
vec4 v4 = vec4(0.0, 1.0, 2.0, 3.0);
return m44 * v4;
}