mandelbrot

Mandelbrot viewer written in C and GLSL
git clone anongit@rnpnr.xyz:mandelbrot.git
Log | Files | Refs | Feed | LICENSE

vert.glsl (140B)


      1 /* see LICENSE for licensing details */
      2 #version 460 core
      3 
      4 layout(location = 0) in vec4 position;
      5 
      6 void main()
      7 {
      8 	gl_Position = position;
      9 }