blob: 1bcee3a80d04b3e141dcdc79822dce35c1c9c177 (
plain) (
tree)
|
|
#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();
};
|