src/opengl/util/brush_painter.glsl
changeset 0 1918ee327afb
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 // fast brush painter for composition modes which can be implemented with blendfuncs
       
     2 // no mask, used for fast filling of aliased primitives (or multisampled)
       
     3 
       
     4 void main()
       
     5 {
       
     6     gl_FragColor = brush();
       
     7 }