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