Ray tracing (pas termine).
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 04_RayTracing / provider / RayTracingProvider.h
1 #ifndef RAYTRACING_PROVIDER_H
2 #define RAYTRACING_PROVIDER_H
3
4 #include "RayTracing.h"
5 #include "ImageFonctionel.h"
6
7 class RayTracingProvider
8 {
9 public:
10 static RayTracing* create();
11 static ImageFonctionel* createGL();
12 };
13
14 #endif