BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
shader.cpp
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#include "shader.h"
20
21#include <glm/gtc/type_ptr.hpp>
22#include <iostream>
23
25
26void
27Shader::build(const std::string &vs, const std::string &fs)
28{
29 // compile shaders
30 unsigned int vertex, fragment;
31 int success;
32 char infoLog[512];
33 // vertex Shader
34 vertex = glCreateShader(GL_VERTEX_SHADER);
35 const char *vsc = vs.c_str();
36 glShaderSource(vertex, 1, &vsc, NULL);
37 glCompileShader(vertex);
38 // print compile errors if any
39 glGetShaderiv(vertex, GL_COMPILE_STATUS, &success);
40 if (!success) {
41 glGetShaderInfoLog(vertex, 512, NULL, infoLog);
42 std::cout << "ERROR::SHADER::VERTEX::COMPILATION_FAILED\n"
43 << infoLog << std::endl;
44 };
45
46 // fragment Shader
47 fragment = glCreateShader(GL_FRAGMENT_SHADER);
48 const char *fsc = fs.c_str();
49 glShaderSource(fragment, 1, &fsc, NULL);
50 glCompileShader(fragment);
51 // print compile errors if any
52 glGetShaderiv(fragment, GL_COMPILE_STATUS, &success);
53 if (!success) {
54 glGetShaderInfoLog(fragment, 512, NULL, infoLog);
55 std::cout << "ERROR::SHADER::FRAGMENT::COMPILATION_FAILED\n"
56 << infoLog << std::endl;
57 };
58
59 // shader Program
60 ID = glCreateProgram();
61 glAttachShader(ID, vertex);
62 glAttachShader(ID, fragment);
63 glLinkProgram(ID);
64 // print linking errors if any
65 glGetProgramiv(ID, GL_LINK_STATUS, &success);
66 if (!success) {
67 glGetProgramInfoLog(ID, 512, NULL, infoLog);
68 std::cout << "ERROR::SHADER::PROGRAM::LINKING_FAILED\n"
69 << infoLog << std::endl;
70 }
71
72 // delete the shaders as they're linked into our program now and no longer
73 // necessary
74 glDeleteShader(vertex);
75 glDeleteShader(fragment);
76}
77
78void
80{
81 glUseProgram(ID);
82}
83
84void
85Shader::set_bool(const std::string &name, bool value) const
86{
87 glUniform1i(glGetUniformLocation(ID, name.c_str()), (int)value);
88}
89
90void
91Shader::set_int(const std::string &name, int value) const
92{
93 glUniform1i(glGetUniformLocation(ID, name.c_str()), value);
94}
95
96void
97Shader::set_float(const std::string &name, float value) const
98{
99 glUniform1f(glGetUniformLocation(ID, name.c_str()), value);
100}
101
102void
103Shader::set_mat4(const std::string &name, glm::mat4 value) const
104{
105 glUniformMatrix4fv(
106 glGetUniformLocation(ID, name.c_str()), 1, GL_FALSE, &value[0][0]);
107}
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