summaryrefslogblamecommitdiffstats
path: root/include/graphics/Shader.hpp
blob: 17a434e4836e8b528e4772e3f3da0d7c4cff9afd (plain) (tree)
1
2
3
4
5
6
7
            
 


                  
 
                          










                                                                                 
                                                                                                       




                                                    
#pragma once

#include <string>
#include <fstream>
#include <sstream>

#include <easylogging++.h>
#include <GL/glew.h>

class Shader
{
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();
};