mightymandel v16

GPU-based Mandelbrot set explorer

find_ref.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 FIND_REF_H
6 #define FIND_REF_H 1
7 
13 #include "ref_set.h"
14 #include "blob_set.h"
15 
19 enum find_ref_t {
23 };
24 
25 enum find_ref_t find_ref(struct ref_set *refs, struct blob_set *blobset, int width, int height, const mpfr_t centerx, const mpfr_t centery, const mpfr_t radius, double max_glitch, int max_blob);
26 
27 #endif