diff options
Diffstat (limited to 'src/graphics/Shader.hpp')
-rw-r--r-- | src/graphics/Shader.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/graphics/Shader.hpp b/src/graphics/Shader.hpp new file mode 100644 index 0000000..8178d2a --- /dev/null +++ b/src/graphics/Shader.hpp @@ -0,0 +1,22 @@ +#include <string> +#include <fstream> +#include <sstream> +#include <iostream> + +#include <GL/glew.h> + +class Shader +{ +private: + const GLchar *vertex; + const GLchar *fragment; +public: + // Идентификатор программы + GLuint Program; + // Конструктор считывает и собирает шейдер + Shader(const GLchar* vertexPath, const GLchar* fragmentPath); + // Использование программы + void Use(); + + void Reload(); +};
\ No newline at end of file |