21#include <glm/gtc/type_ptr.hpp>
30 unsigned int vertex, fragment;
34 vertex = glCreateShader(GL_VERTEX_SHADER);
35 const char *vsc = vs.c_str();
36 glShaderSource(vertex, 1, &vsc, NULL);
37 glCompileShader(vertex);
39 glGetShaderiv(vertex, GL_COMPILE_STATUS, &success);
41 glGetShaderInfoLog(vertex, 512, NULL, infoLog);
42 std::cout <<
"ERROR::SHADER::VERTEX::COMPILATION_FAILED\n"
43 << infoLog << std::endl;
47 fragment = glCreateShader(GL_FRAGMENT_SHADER);
48 const char *fsc = fs.c_str();
49 glShaderSource(fragment, 1, &fsc, NULL);
50 glCompileShader(fragment);
52 glGetShaderiv(fragment, GL_COMPILE_STATUS, &success);
54 glGetShaderInfoLog(fragment, 512, NULL, infoLog);
55 std::cout <<
"ERROR::SHADER::FRAGMENT::COMPILATION_FAILED\n"
56 << infoLog << std::endl;
60 ID = glCreateProgram();
61 glAttachShader(
ID, vertex);
62 glAttachShader(
ID, fragment);
65 glGetProgramiv(
ID, GL_LINK_STATUS, &success);
67 glGetProgramInfoLog(
ID, 512, NULL, infoLog);
68 std::cout <<
"ERROR::SHADER::PROGRAM::LINKING_FAILED\n"
69 << infoLog << std::endl;
74 glDeleteShader(vertex);
75 glDeleteShader(fragment);
87 glUniform1i(glGetUniformLocation(
ID, name.c_str()), (
int)value);
93 glUniform1i(glGetUniformLocation(
ID, name.c_str()), value);
99 glUniform1f(glGetUniformLocation(
ID, name.c_str()), value);
106 glGetUniformLocation(
ID, name.c_str()), 1, GL_FALSE, &value[0][0]);
unsigned int ID
Shader program id.
void set_int(const std::string &name, int value) const
Bind the integer variable to the shader.
void set_mat4(const std::string &name, glm::mat4 value) const
Bind the matrix 4x4 variable to the shader.
void use()
Activate built shader.
void set_float(const std::string &name, float value) const
Bind the float variable to the shader.
void build(const std::string &vs, const std::string &fs)
Read and build the shader.
void set_bool(const std::string &name, bool value) const
Bind the bool variable to the shader.