7 lines
84 B
GLSL
7 lines
84 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
mat4 a;
|
|
void main() {
|
|
sk_FragColor = transpose(a)[0];
|
|
}
|