Ray tracing (pas termine).
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 04_RayTracing / moo / device / RayTracingDevice.h
diff --git a/WCudaMSE/Student_Cuda_Image/src/cpp/core/04_RayTracing/moo/device/RayTracingDevice.h b/WCudaMSE/Student_Cuda_Image/src/cpp/core/04_RayTracing/moo/device/RayTracingDevice.h
new file mode 100644 (file)
index 0000000..47e93ae
--- /dev/null
@@ -0,0 +1,9 @@
+#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);
+
+#endif