You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- 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;
- }
|