summaryrefslogtreecommitdiff
path: root/gfx/gl/shader.h
blob: a839b9be6699af5ed600661de9f572752ebca786 (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
#ifndef SHADER_INCLUDED_H
#define SHADER_INCLUDED_H

#include <GL/glew.h>
#include <glRef.hpp>
#include <glm/glm.hpp>
#include <string_view>

class Shader {
public:
	Shader();

	void Bind() const;
	void setView(glm::mat4 view) const;
	void setModel(glm::mat4 model) const;

private:
	class Source {
	public:
		using ShaderRef = glRef<GLuint, __glewCreateShader, __glewDeleteShader>;

		Source(const std::basic_string_view<unsigned char> text, GLuint type);
		Source(const GLchar * text, GLint len, GLuint type);

		ShaderRef id;
	};

	static void CheckShaderError(GLuint shader, GLuint flag, bool isProgram, std::string_view errorMessage);

	using ProgramRef = glRef<GLuint, __glewCreateProgram, __glewDeleteProgram>;

	ProgramRef m_program;
	GLint viewProjection_uniform, model_uniform, lightDir_uniform;
};

#endif