Ajout du TP HeatTransfert.
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 05_HeatTransfert / moo / device / HeatTransfertDevice.h
1 #ifndef HEAT_TRANSFERT_DEVICE_H
2 #define HEAT_TRANSFERT_DEVICE_H
3
4 #include "CalibreurF.h"
5
6 #include "HeatImage.h"
7
8 __global__
9 void display(HeatImage image, uchar4* ptrDevPixels, CalibreurF calibreur);
10
11 __global__
12 void copyHeaters(HeatImage heaters, HeatImage destination);
13
14 __global__
15 void diffuseMethode1(HeatImage from, HeatImage to);
16
17 __global__
18 void diffuseMethode2(HeatImage from, HeatImage to);
19
20 #endif