Clone of mesa.
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.

forbreak.glsl 223B

12345678910111213
  1. uniform int KernelSizeInt;
  2. void main() {
  3. int i;
  4. vec4 sum = vec4(0.0);
  5. for (i = 0; i < KernelSizeInt; ++i) {
  6. sum.g += 0.25;
  7. if (i > 0)
  8. break;
  9. }
  10. sum.a = 1.0;
  11. gl_FragColor = sum;
  12. }