Début du TP convolution. Pour l'instant uniquement lecture d'une vidéo.
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 04_RayTracing / moo / device / RayTracingDevice.h
index 47e93ae..1500c43 100644 (file)
@@ -1,9 +1,7 @@
 #ifndef RAY_TRACING_DEVICE_H
 #define RAY_TRACING_DEVICE_H
 
-#include "DomaineMath.h"
-
 __global__
-void rayTracing(uchar4* ptrDevPixels, int w, int h, DomaineMath domaineMath, float t);
+void rayTracing(uchar4* ptrDevPixels, int w, int h, float t);
 
 #endif