Missing parameters file.
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 03_Newton / moo / device / NewtonDevice.h
1 #ifndef NEWTON_DEVICE_H
2 #define NEWTON_DEVICE_H
3
4 #include "DomaineMath.h"
5
6 __global__
7 void newton(uchar4* ptrDevPixels, int w, int h, DomaineMath domaineMath, int n, float epsilon);
8
9 #endif