1
0
Fork 0
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.

11 lines
164 B

out vec4 sk_FragColor;
mat3 a;
mat3 b;
mat4 c;
mat4 d;
void main() {
sk_FragColor.xyz = matrixCompMult(a, b)[0];
sk_FragColor = matrixCompMult(c, d)[0];
}