mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-22 04:15:03 +00:00
8 lines
169 B
GLSL
8 lines
169 B
GLSL
varying vec2 texcoord;
|
|
varying vec4 offset[3];
|
|
uniform sampler2D colorTex;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor.xy = SMAALumaEdgeDetectionPS(texcoord, offset, colorTex).xy;
|
|
} |