summaryrefslogtreecommitdiff
path: root/src/core/sampler.h
blob: 0b97b27c6f67cf1d4b8de03ac69431025134688e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef COAL_SAMPLER_H
#define COAL_SAMPLER_H

#include "CL/cl.h"

namespace Coal
{
   class Sampler
   {
   public:
      Sampler();
      ~Sampler();
   };
}

struct _cl_sampler : public Coal::Sampler
{
};

#endif