Missing parameters file.
[GPU.git] / provider / RayTracingProvider.h
1 #ifndef RAYTRACING_PROVIDER_H
2 #define RAYTRACING_PROVIDER_H
3
4 #include "RayTracing.h"
5 #include "Image.h"
6
7 class RayTracingProvider
8 {
9 public:
10 static RayTracing* create();
11 static Image* createGL();
12 };
13
14 #endif