44 void build(
const std::string &vs,
const std::string &fs);
60 void set_bool(
const std::string &name,
bool value)
const;
67 void set_int(
const std::string &name,
int value)
const;
74 void set_float(
const std::string &name,
float value)
const;
81 void set_mat4(
const std::string &name, glm::mat4 value)
const;
Abstracts working with shaders.
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.