BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
Public Member Functions | Public Attributes | List of all members
Shader Class Reference

Abstracts working with shaders. More...

#include <shader.h>

Public Member Functions

 Shader ()
 
void build (const std::string &vs, const std::string &fs)
 Read and build the shader. More...
 
void use ()
 Activate built shader. More...
 
void set_bool (const std::string &name, bool value) const
 Bind the bool variable to the shader. More...
 
void set_int (const std::string &name, int value) const
 Bind the integer variable to the shader. More...
 
void set_float (const std::string &name, float value) const
 Bind the float variable to the shader. More...
 
void set_mat4 (const std::string &name, glm::mat4 value) const
 Bind the matrix 4x4 variable to the shader. More...
 

Public Attributes

unsigned int ID
 Shader program id. More...
 

Detailed Description

Abstracts working with shaders.

Definition at line 30 of file shader.h.

Constructor & Destructor Documentation

◆ Shader()

Shader::Shader ( )

Definition at line 24 of file shader.cpp.

Member Function Documentation

◆ build()

void Shader::build ( const std::string &  vs,
const std::string &  fs 
)

Read and build the shader.

Parameters
vsVertex shader string.
fsFragment shader string.

Definition at line 27 of file shader.cpp.

Here is the caller graph for this function:

◆ set_bool()

void Shader::set_bool ( const std::string &  name,
bool  value 
) const

Bind the bool variable to the shader.

Parameters
nameName of the variable in the shader.
valueThe set value of the variable.

Definition at line 85 of file shader.cpp.

◆ set_float()

void Shader::set_float ( const std::string &  name,
float  value 
) const

Bind the float variable to the shader.

Parameters
nameName of the variable in the shader.
valueThe set value of the variable.

Definition at line 97 of file shader.cpp.

◆ set_int()

void Shader::set_int ( const std::string &  name,
int  value 
) const

Bind the integer variable to the shader.

Parameters
nameName of the variable in the shader.
valueThe set value of the variable.

Definition at line 91 of file shader.cpp.

Here is the caller graph for this function:

◆ set_mat4()

void Shader::set_mat4 ( const std::string &  name,
glm::mat4  value 
) const

Bind the matrix 4x4 variable to the shader.

Parameters
nameName of the variable in the shader.
valueThe set value of the variable.

Definition at line 103 of file shader.cpp.

Here is the caller graph for this function:

◆ use()

void Shader::use ( )

Activate built shader.

Has to be called after Shader::build function.

Definition at line 79 of file shader.cpp.

Here is the caller graph for this function:

Member Data Documentation

◆ ID

unsigned int Shader::ID

Shader program id.

Definition at line 34 of file shader.h.


The documentation for this class was generated from the following files: