BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
texture_renderer.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 "texture_renderer.h"
20
21#include "shaders.h"
22
24 : screen_quad_data({ -1.0f,
25 -1.0f,
26 1.0f,
27 -1.0f,
28 -1.0f,
29 1.0f,
30 -1.0f,
31 1.0f,
32 1.0f,
33 -1.0f,
34 1.0f,
35 1.0f })
36 , current_fb(num_of_textures - 1)
37 , fb_size({ 800.0f, 600.0f })
38{
39}
40
41void
43{
44 glGenVertexArrays(1, &VAO_quad);
45 glGenBuffers(1, &VBO_quad);
46
48
49 GLenum DrawBuffers[1] = { GL_COLOR_ATTACHMENT0 };
50 glDrawBuffers(1, DrawBuffers);
51
52 gen_fbs();
54
56
58}
59
60void
62{
63 glBindFramebuffer(GL_FRAMEBUFFER, 0);
64 glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
65 glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
66}
67
68void
70{
72 shader_tex.set_int("renderedTexture", 0);
73
74 glBindVertexArray(VAO_quad);
75
76 glDisable(GL_BLEND);
77
78 for (size_t i = 0; i < num_of_textures; ++i) {
79 glBindTexture(GL_TEXTURE_2D, textures[i]);
80 glDrawArrays(GL_TRIANGLES, 0, 6);
81 }
82}
83
84void
85TextureRenderer::bind_fb(const glm::vec2 &s)
86{
88
89 if (fb_size != s)
90 resize_fbs(s);
91
92 glBindFramebuffer(GL_FRAMEBUFFER, fbs[current_fb]);
93 glClearColor(1.0f, 1.0f, 1.0f, 0.0f);
94 glClear(GL_COLOR_BUFFER_BIT);
95}
96
97void
99{
100 for (size_t i = 0; i < fbs.size(); ++i) {
101 glGenFramebuffers(1, &fbs[i]);
102 }
103}
104
105void
107{
108 for (size_t i = 0; i < textures.size(); ++i) {
109 glGenTextures(1, &textures[i]);
110 }
111}
112
113void
115{
116 for (size_t i = 0; i < fbs.size(); ++i) {
117 glBindFramebuffer(GL_FRAMEBUFFER, fbs[i]);
118 glBindTexture(GL_TEXTURE_2D, textures[i]);
119 glTexImage2D(GL_TEXTURE_2D,
120 0,
121 GL_RGBA,
122 800,
123 600,
124 0,
125 GL_RGBA,
126 GL_UNSIGNED_BYTE,
127 NULL);
128
129 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
130 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
131 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
132 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
133 glBindTexture(GL_TEXTURE_2D, 0);
134
135 glFramebufferTexture2D(
136 GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, textures[i], 0);
137 glBindFramebuffer(GL_FRAMEBUFFER, 0);
138 }
139}
140
141void
143{
144 fb_size = s;
145 for (size_t i = 0; i < num_of_textures; ++i) {
146 glBindFramebuffer(GL_FRAMEBUFFER, fbs[i]);
147 glBindTexture(GL_TEXTURE_2D, textures[i]);
148 glTexImage2D(GL_TEXTURE_2D,
149 0,
150 GL_RGBA,
151 fb_size.x,
152 fb_size.y,
153 0,
154 GL_RGBA,
155 GL_UNSIGNED_BYTE,
156 NULL);
157 glFramebufferTexture2D(
158 GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, textures[i], 0);
159 glBindFramebuffer(GL_FRAMEBUFFER, 0);
160 }
161}
162
163void
165{
166 glBindVertexArray(VAO_quad);
167
168 glBindBuffer(GL_ARRAY_BUFFER, VBO_quad);
169 glBufferData(GL_ARRAY_BUFFER,
170 screen_quad_data.size() * sizeof(float),
172 GL_STATIC_DRAW);
173 glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 0, (void *)0);
174 glEnableVertexAttribArray(0);
175}
void set_int(const std::string &name, int value) const
Bind the integer variable to the shader.
Definition: shader.cpp:91
void use()
Activate built shader.
Definition: shader.cpp:79
void build(const std::string &vs, const std::string &fs)
Read and build the shader.
Definition: shader.cpp:27
const std::string tex_fs
Definition: shaders.h:32
const std::string tex_vs
Definition: shaders.h:24
std::array< unsigned int, num_of_textures > textures
void resize_fbs(const glm::vec2 &fb_size)
void bind_fb(const glm::vec2 &fb_size)
const std::array< float, 12 > screen_quad_data
unsigned int VBO_quad
unsigned int VAO_quad
std::array< unsigned int, num_of_textures > fbs
static constexpr size_t num_of_textures