From a6e0c9ce9b6c468d0e622ffb5c05eba664ea4f47 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 17 Oct 2017 23:33:13 +0500 Subject: Refactored #include directives --- src/Shader.hpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/Shader.hpp') 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 -#include -#include - -#include #include 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(); -- cgit v1.2.3