mightymandel v16

GPU-based Mandelbrot set explorer

fp32_colour2_vert.glsl
Go to the documentation of this file.
1 // mightymandel -- GPU-based Mandelbrot Set explorer
2 // Copyright (C) 2012,2013,2014,2015 Claude Heiland-Allen
3 // License GPL3+ http://www.gnu.org/licenses/gpl.html
4 
5 in vec4 pt;
6 out vec2 t;
7 void main() {
8  gl_Position = vec4(pt.xy, 0.0, 1.0);
9  t = pt.zw;
10 }