HatchitGraphics
ht_glrenderpass.h
1 
25 #pragma once
26 
27 #include <ht_renderpass.h>
28 
29 namespace Hatchit {
30 
31  namespace Graphics {
32 
33  namespace OpenGL {
34 
35  class HT_API GLRenderPass : public IRenderPass
36  {
37  public:
38  GLRenderPass();
39  virtual ~GLRenderPass();
40 
42  virtual void VRender() override;
43  };
44  }
45 
46  }
47 }
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_color.h:19
Definition: ht_glrenderpass.h:35