Home
last modified time | relevance | path

Searched refs:MandelbrotThread (Results 1 – 2 of 2) sorted by relevance

/external/eigen/demos/mandelbrot/
Dmandelbrot.h20 class MandelbrotThread : public QThread
29 MandelbrotThread(MandelbrotWidget *w, int i) : widget(w), id(i) {} in MandelbrotThread() function
38 friend class MandelbrotThread; variable
45 MandelbrotThread **threads;
60 threads = new MandelbrotThread*[threadcount]; in MandelbrotWidget()
61 for(int th = 0; th < threadcount; th++) threads[th] = new MandelbrotThread(this, th); in MandelbrotWidget()
Dmandelbrot.cpp31 template<typename Real> void MandelbrotThread::render(int img_width, int img_height) in render()
111 void MandelbrotThread::run() in run()