HatchitGraphics
ht_glrendertarget.h
1 
25 #pragma once
26 
27 #include <ht_rendertarget.h>
28 #include <ht_gl.h>
29 
30 namespace Hatchit {
31 
32  namespace Graphics {
33 
34  namespace OpenGL {
35 
36  class HT_API GLRenderTarget : public IRenderTarget
37  {
38  public:
40  virtual ~GLRenderTarget();
41 
43  virtual void VReadBind() override;
45  virtual void VWriteBind() override;
47  virtual void VFree() override;
48 
49  private:
50  GLuint fbo;
51  };
52 
53  }
54 
55  }
56 }
Definition: ht_glrendertarget.h:36
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_color.h:19