mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 10:43:15 +02:00
9 lines
201 B
Plaintext
9 lines
201 B
Plaintext
|
varying vec2 texcoord;
|
||
|
varying vec4 offset;
|
||
|
uniform sampler2D colorTex;
|
||
|
uniform sampler2D blendTex;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor = SMAANeighborhoodBlendingPS(texcoord, offset, colorTex, blendTex);
|
||
|
}
|