MandelbrotCUDA/Mandelbrot/main.cu
2020-07-16 23:56:17 +02:00

21 lines
277 B
Plaintext

#include <complex>
#include "MainWindow.cuh"
fComplex64 func(fComplex64 z, fComplex64 c)
{
return z * z + c;
}
int main(int argc, char** argv)
{
SDL_Init(SDL_INIT_VIDEO);
MainWindow window;
window.SetFunction(func);
window.Launch(false);
window.Stop();
return 0;
}