5 #include "Indice2D.h"
\r
6 #include "IndiceTools.h"
\r
7 #include "DomaineMath.h"
\r
8 #include "cudaTools.h"
\r
11 #include "NewtonMath.h"
\r
13 __global__ void newton(uchar4* ptrDevPixels, int w, int h, DomaineMath domaineMath)
\r
15 const int TID = Indice2D::tid();
\r
16 const int NB_THREAD = Indice2D::nbThread();
\r
17 const int WH = w * h;
\r
19 NewtonMath newtonMath;
\r
22 color.w = 255; // Par défaut, l'image est opaque.
\r
30 IndiceTools::toIJ(s, w, &pixelI, &pixelJ); // update (pixelI, pixelJ)
\r
32 // (i,j) domaine écran.
\r
33 // (x,y) domaine math.
\r
34 domaineMath.toXY(pixelI, pixelJ, &x, &y); // (i,j) -> (x,y)
\r
36 newtonMath.colorXY(&color, x, y);
\r
38 ptrDevPixels[s] = color;
\r