summaryrefslogtreecommitdiffstats
path: root/dev/a6-harold/shaders/stroke2d.frag
blob: 2dd7efae05f98891c843fc9540e35db6d099e8ec (plain) (blame)
1
2
3
4
5
6
7
8
9
#version 330

uniform vec4 strokeColor;

out vec4 color;

void main() {
    color = strokeColor;
}