BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
texture_renderer.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 TEXTURE_RENDERER_H
20#define TEXTURE_RENDERER_H
21
22#include <array>
23
24#include "shader.h"
25#include "view.h"
26
27/**
28 * @brief Takes care of the rendering to the texture
29 * and then rendering the texture to the screen.
30 *
31 */
33{
35
36 void init();
37
38 void bind_default_fb();
39 void render();
40 void bind_fb(const glm::vec2 &fb_size);
41
42 size_t get_active_fb() { return current_fb; }
43 size_t get_num_of_texts() { return num_of_textures; }
44
45private:
46 static constexpr size_t num_of_textures = 5;
47
48 const std::array<float, 12> screen_quad_data;
49
51 unsigned int VAO_quad;
52 unsigned int VBO_quad;
53
54 size_t current_fb;
55 glm::vec2 fb_size;
56
57 std::array<unsigned int, num_of_textures> fbs;
58 std::array<unsigned int, num_of_textures> textures;
59
60 void gen_fbs();
61 void gen_textures();
62
64
65 void resize_fbs(const glm::vec2 &fb_size);
67};
68
69#endif // #ifndef TEXTURE_RENDERER_H
Abstracts working with shaders.
Definition: shader.h:31
Takes care of the rendering to the texture and then rendering the texture to the screen.
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
size_t get_active_fb()
unsigned int VAO_quad
std::array< unsigned int, num_of_textures > fbs
static constexpr size_t num_of_textures
size_t get_num_of_texts()