Correction de probl?me de compilation li? a RayTracing.
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 04_RayTracing / provider / RayTracingProvider.cpp
index 0486785..f232f0b 100644 (file)
@@ -8,8 +8,8 @@ RayTracing* RayTracingProvider::create()
     return new RayTracing(dw, dh);
     }
 
-ImageFonctionel* RayTracingProvider::createGL()
+Image* RayTracingProvider::createGL()
     {
     ColorRGB_01* ptrColorTitre = new ColorRGB_01(0, 0, 0);
-    return new ImageFonctionel(create(), ptrColorTitre); // both ptr destroy by destructor of ImageFonctionel
+    return new Image(create(), ptrColorTitre); // both ptr destroy by destructor of ImageFonctionel
     }