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