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