HatchitGraphics
ht_glfragshader.h
1 
24 #pragma once
25 
26 #include <ht_glshader.h>
27 
28 namespace Hatchit {
29 
30  namespace Graphics {
31 
32  namespace OpenGL {
33 
34  class HT_API GLFragShader : public GLShader
35  {
36  public:
37  GLFragShader();
38  virtual ~GLFragShader();
39 
40  void VCompile() override;
41  };
42  }
43  }
44 }
Definition: ht_glshader.h:30
Hatchit Engine Copyright(c) 2015-2016 Third-Degree.
Definition: ht_color.h:19
Definition: ht_glfragshader.h:34