mightymandel v16

GPU-based Mandelbrot set explorer

record.h
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 #ifndef RECORD_H
6 #define RECORD_H 1
7 
8 #include <mpfr.h>
9 
10 struct record {
11  unsigned char *buffer;
12  int bytes;
13 };
14 
15 void record_begin(struct record *s);
16 void record_end(struct record *s);
17 void record_do(struct record *s, const char *name, int width, int height, const char *comment);
18 
19 #endif