summaryrefslogblamecommitdiffstats
path: root/src/graphics/Shader.hpp
blob: 66d687c33c3530003b2455a5b3883bf48534f1b0 (plain) (tree)
1
2
3
4
            


                  

















                                                                                 
#pragma once
#include <string>
#include <fstream>
#include <sstream>

#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();
};