X-Git-Url: http://git.euphorik.ch/index.cgi?a=blobdiff_plain;f=WCudaMSE%2FTuto_Image_Cuda%2Fsrc%2Fcpp%2Fcore%2F03_Event%2Fmoo%2Fdevice%2FEventDevice.cu;fp=WCudaMSE%2FTuto_Image_Cuda%2Fsrc%2Fcpp%2Fcore%2F03_Event%2Fmoo%2Fdevice%2FEventDevice.cu;h=1a2ab508087800f510eed625815195f39b0516f8;hb=8d08c12b29c2a14684f35c023ee39e694bb80d25;hp=0000000000000000000000000000000000000000;hpb=226de81f7e1f1fbf4ac79d0d089e8a05ec7159a0;p=GPU.git diff --git a/WCudaMSE/Tuto_Image_Cuda/src/cpp/core/03_Event/moo/device/EventDevice.cu b/WCudaMSE/Tuto_Image_Cuda/src/cpp/core/03_Event/moo/device/EventDevice.cu new file mode 100755 index 0000000..1a2ab50 --- /dev/null +++ b/WCudaMSE/Tuto_Image_Cuda/src/cpp/core/03_Event/moo/device/EventDevice.cu @@ -0,0 +1,42 @@ +#include "Indice2D.h" +#include "cudaTools.h" +#include "Device.h" +#include "DomaineMath.h" + + + +/*----------------------------------------------------------------------*\ + |* Declaration *| + \*---------------------------------------------------------------------*/ + +/*--------------------------------------*\ + |* Public *| + \*-------------------------------------*/ + +__global__ void event(uchar4* ptrDevPixels,int w, int h,DomaineMath domaineMath,float t); + +/*--------------------------------------*\ + |* Private *| + \*-------------------------------------*/ + +/*----------------------------------------------------------------------*\ + |* Implementation *| + \*---------------------------------------------------------------------*/ + +/*--------------------------------------*\ + |* Public *| + \*-------------------------------------*/ + +__global__ void event(uchar4* ptrDevPixels,int w, int h,DomaineMath domaineMath,float t) + { + // rien pour cet example + } + +/*--------------------------------------*\ + |* Private *| + \*-------------------------------------*/ + +/*----------------------------------------------------------------------*\ + |* End *| + \*---------------------------------------------------------------------*/ +