14#include <QtGui/QApplication>
15#include <QtGui/QWidget>
16#include <QtCore/QThread>
26 bool single_precision;
31 template<
typename Real>
void render(
int img_width,
int img_height);
39 Eigen::Vector2d center;
42 unsigned char *buffer;
56 size(0), buffer(0), draft(16)
58 setAutoFillBackground(
false);
59 threadcount = QThread::idealThreadCount();
61 for(
int th = 0; th < threadcount; th++) threads[th] =
new MandelbrotThread(
this, th);
65 if(buffer)
delete[]buffer;
66 for(
int th = 0; th < threadcount; th++)
delete threads[th];
int i
Definition BiCGSTAB_step_by_step.cpp:9
RowVector3d w
Definition Matrix_resize_int.cpp:3
Scalar Scalar int size
Definition benchVecAdd.cpp:17
Definition mandelbrot.h:21
void run()
Definition mandelbrot.cpp:111
void render(int img_width, int img_height)
Definition mandelbrot.cpp:31
MandelbrotThread(MandelbrotWidget *w, int i)
Definition mandelbrot.h:29