7 lines
87 B
GLSL
7 lines
87 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
uniform float a;
|
|
void main() {
|
|
sk_FragColor.x = dFdx(a);
|
|
}
|