Guest User

Untitled

a guest
Jun 7th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     for (int i = 0; i < 25; i++) {
  2.         z = cadd(cmul(z, z), c);
  3.        
  4.         if (cabs(z) > 2.0) {
  5.             cogl_color_out = cogl_color_in;
  6.             return;
  7.         }
  8.     }
  9.    
  10.     cogl_color_out = vec4(0, 0, 0, 1.0);
Add Comment
Please, Sign In to add comment