BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
shader.h
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Sona Molnarova
4 *
5 * BlosSOM is free software: you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free
7 * Software Foundation, either version 3 of the License, or (at your option)
8 * any later version.
9 *
10 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#ifndef SHADER_H
20#define SHADER_H
21
22#include <glad/glad.h>
23#include <glm/glm.hpp>
24#include <string>
25
26/**
27 * @brief Abstracts working with shaders.
28 *
29 */
30class Shader
31{
32public:
33 /** Shader program id.*/
34 unsigned int ID;
35
36 Shader();
37
38 /**
39 * @brief Read and build the shader.
40 *
41 * @param vs Vertex shader string.
42 * @param fs Fragment shader string.
43 */
44 void build(const std::string &vs, const std::string &fs);
45
46 /**
47 * @brief Activate built shader.
48 *
49 * Has to be called after Shader::build function.
50 *
51 */
52 void use();
53
54 /**
55 * @brief Bind the bool variable to the shader.
56 *
57 * @param name Name of the variable in the shader.
58 * @param value The set value of the variable.
59 */
60 void set_bool(const std::string &name, bool value) const;
61 /**
62 * @brief Bind the integer variable to the shader.
63 *
64 * @param name Name of the variable in the shader.
65 * @param value The set value of the variable.
66 */
67 void set_int(const std::string &name, int value) const;
68 /**
69 * @brief Bind the float variable to the shader.
70 *
71 * @param name Name of the variable in the shader.
72 * @param value The set value of the variable.
73 */
74 void set_float(const std::string &name, float value) const;
75 /**
76 * @brief Bind the matrix 4x4 variable to the shader.
77 *
78 * @param name Name of the variable in the shader.
79 * @param value The set value of the variable.
80 */
81 void set_mat4(const std::string &name, glm::mat4 value) const;
82};
83
84#endif // SHADER_H
Abstracts working with shaders.
Definition: shader.h:31
Shader()
Definition: shader.cpp:24
unsigned int ID
Shader program id.
Definition: shader.h:34
void set_int(const std::string &name, int value) const
Bind the integer variable to the shader.
Definition: shader.cpp:91
void set_mat4(const std::string &name, glm::mat4 value) const
Bind the matrix 4x4 variable to the shader.
Definition: shader.cpp:103
void use()
Activate built shader.
Definition: shader.cpp:79
void set_float(const std::string &name, float value) const
Bind the float variable to the shader.
Definition: shader.cpp:97
void build(const std::string &vs, const std::string &fs)
Read and build the shader.
Definition: shader.cpp:27
void set_bool(const std::string &name, bool value) const
Bind the bool variable to the shader.
Definition: shader.cpp:85