summaryrefslogtreecommitdiffstats
path: root/code/graphics/Shader.hpp
blob: 8178d2a6c73cfcc2f860ad7c4a8bac3a82170340 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <string>
#include <fstream>
#include <sstream>
#include <iostream>

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