From 1563ae5be6bc130a9b3a23464f7e28fdb1e87da3 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sat, 13 May 2017 19:01:56 +0500 Subject: 2017-05-13 --- code/graphics/Shader.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 code/graphics/Shader.hpp (limited to 'code/graphics/Shader.hpp') diff --git a/code/graphics/Shader.hpp b/code/graphics/Shader.hpp new file mode 100644 index 0000000..8178d2a --- /dev/null +++ b/code/graphics/Shader.hpp @@ -0,0 +1,22 @@ +#include +#include +#include +#include + +#include + +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 -- cgit v1.2.3