summaryrefslogtreecommitdiff
path: root/progs/fpglsl/forbreak.glsl
blob: 0b8d957cb043596103fe4bb6f050ef3cb7f99b1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
uniform int KernelSizeInt;

void main() {
    int i;
    vec4 sum = vec4(0.0);
    for (i = 0; i < KernelSizeInt; ++i) {
	sum.g += 0.25;
        if (i > 0)
           break;
    }
    sum.a = 1.0;
    gl_FragColor = sum;
}