-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshader.hpp
91 lines (77 loc) · 1.83 KB
/
shader.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#pragma once
#include "uniform_info.hpp"
#include "utils.hpp"
enum class shader_type
{
VERTEX,
FRAGMENT,
COMPUTE
};
class shader
{
public:
enum status
{
uninitialized,
initialized,
updated,
compiled,
};
public:
shader(shader_type type);
void init();
void compile();
void deinit();
void set_source(std::string_view source_code);
void set_path(std::string_view path);
int id() const;
static shader from_file(std::string_view path);
private:
status _status = status::uninitialized;
int _id = 0;
shader_type _type;
std::string _path = "unknown";
};
class shader_program
{
public:
enum class status
{
uninitialized,
initialized,
updated,
linked,
};
public:
shader_program();
shader_program(const shader_program& other) = delete;
shader_program(shader_program&& other);
shader_program& operator=(const shader_program& other) = delete;
shader_program& operator=(shader_program&& other);
~shader_program();
void init();
void link();
void use() const;
void deinit();
void add_shader(std::string_view path);
void release_shaders();
int id() const;
bool linked() const;
void set_name(std::string name);
std::string get_name() const;
static void unuse();
void set_uniform(std::string_view name, std::any value);
private:
void resolve_uniforms();
void setup_property_values() const;
private:
status _status = status::uninitialized;
int _id = 0;
std::vector<shader> _shaders;
std::string _name;
static glm::mat4 _view_matrix;
static glm::mat4 _projection_matrix;
std::vector<uniform_info> _properties;
std::unordered_map<std::string, uniform_info&, string_hash, std::equal_to<>>
_name_property_map;
};