blob: 5b3aab8e98964d7e3ac1a96e3076dfd7e77cf908 (
plain)
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
|
#ifndef SHADER_INCLUDED_H
#define SHADER_INCLUDED_H
#include <GL/glew.h>
#include <array>
#include <glRef.hpp>
#include <glm/glm.hpp>
#include <string_view>
class Location;
class ProgramHandleBase {
public:
ProgramHandleBase(GLuint, GLuint);
using ProgramRef = glRef<GLuint, __glewCreateProgram, __glewDeleteProgram>;
ProgramRef m_program;
GLint viewProjection_uniform, model_uniform;
};
class Shader {
public:
enum class Program { Basic = 0, Water = 1, LandMass = 2, StaticPos = 3 };
Shader();
void setView(glm::mat4 view) const;
void setModel(const Location &, Program = Program::Basic) const;
void setUniform(const GLchar *, glm::vec3 dir) const;
private:
class ProgramHandle : public ProgramHandleBase {
public:
ProgramHandle(GLuint, GLuint);
};
std::array<ProgramHandle, 4> programs;
};
#endif
|