summaryrefslogtreecommitdiffstats
path: root/src/opengl/util/brush_painter.glsl
blob: 6c4acdf924fd6d3f34b60a014a428d64264e50ce (plain)
1
2
3
4
5
6
7
// fast brush painter for composition modes which can be implemented with blendfuncs
// no mask, used for fast filling of aliased primitives (or multisampled)

void main()
{
    gl_FragColor = brush();
}