diff options
Diffstat (limited to '')
-rw-r--r-- | src/Shader.hpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Shader.hpp b/src/Shader.hpp index 17a434e..d6d59eb 100644 --- a/src/Shader.hpp +++ b/src/Shader.hpp @@ -1,10 +1,5 @@ #pragma once -#include <string> -#include <fstream> -#include <sstream> - -#include <easylogging++.h> #include <GL/glew.h> class Shader @@ -13,11 +8,8 @@ private: const GLchar *vertex; const GLchar *fragment; public: - // Идентификатор программы GLuint Program; - // Конструктор считывает и собирает шейдер Shader(const GLchar* vertexPath, const GLchar* fragmentPath, const GLchar* geometryPath = nullptr); - // Использование программы void Use(); void Reload(); |