mightymandel v16

GPU-based Mandelbrot set explorer

fp64_unescaped.h
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 #ifndef FP64_UNESCAPED_H
6 #define FP64_UNESCAPED_H 1
7 
8 #include <GL/glew.h>
9 
11  GLuint program;
12  GLint cne0;
13  GLint zdz0;
14  GLuint vao;
15 };
16 
17 void fp64_unescaped_begin(struct fp64_unescaped *s);
18 void fp64_unescaped_end(struct fp64_unescaped *s);
19 void fp64_unescaped_start(struct fp64_unescaped *s, GLuint vbo);
20 void fp64_unescaped_do(struct fp64_unescaped *s, GLuint *unescaped, GLuint active_count, GLuint vbo, GLuint query);
21 
22 #endif