blob: 1bcee3a80d04b3e141dcdc79822dce35c1c9c177 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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();
};
|