8 lines
96 B
Plaintext
8 lines
96 B
Plaintext
|
|
||
|
out vec4 sk_FragColor;
|
||
|
in float a;
|
||
|
in float b;
|
||
|
void main() {
|
||
|
sk_FragColor.x = pow(a, b);
|
||
|
}
|