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