mightymandel v16

GPU-based Mandelbrot set explorer

fp64_unescaped_vert.glsl
Go to the documentation of this file.
1 // mightymandel -- GPU-based Mandelbrot Set explorer
2 // Copyright (C) 2012,2013,2014 Claude Heiland-Allen
3 // License GPL3+ http://www.gnu.org/licenses/gpl.html
4 
5 in dvec4 cne0;
6 #ifdef DE
7 in dvec4 zdz0;
8 #else
9 in dvec2 zdz0;
10 #endif
11 out dvec4 cne1;
12 #ifdef DE
13 out dvec4 zdz1;
14 #else
15 out dvec2 zdz1;
16 #endif
17 void main() {
18  cne1 = cne0;
19  zdz1 = zdz0;
20 }