summaryrefslogtreecommitdiff
path: root/gfx/gl/shader.h
blob: 3ee94491725d9a657bb3fa1bf00e5da6c4cac97f (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
#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 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:
		ProgramHandle(GLuint, GLuint);
		using ProgramRef = glRef<GLuint, __glewCreateProgram, __glewDeleteProgram>;

		ProgramRef m_program;
		GLint viewProjection_uniform, model_uniform;
	};

	std::array<ProgramHandle, 4> programs;
};

#endif