24 : screen_quad_data({ -1.0f,
36 , current_fb(num_of_textures - 1)
37 , fb_size({ 800.0f, 600.0f })
49 GLenum DrawBuffers[1] = { GL_COLOR_ATTACHMENT0 };
50 glDrawBuffers(1, DrawBuffers);
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);
79 glBindTexture(GL_TEXTURE_2D,
textures[i]);
80 glDrawArrays(GL_TRIANGLES, 0, 6);
93 glClearColor(1.0f, 1.0f, 1.0f, 0.0f);
94 glClear(GL_COLOR_BUFFER_BIT);
100 for (
size_t i = 0; i <
fbs.size(); ++i) {
101 glGenFramebuffers(1, &
fbs[i]);
108 for (
size_t i = 0; i <
textures.size(); ++i) {
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,
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);
135 glFramebufferTexture2D(
136 GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D,
textures[i], 0);
137 glBindFramebuffer(GL_FRAMEBUFFER, 0);
146 glBindFramebuffer(GL_FRAMEBUFFER,
fbs[i]);
147 glBindTexture(GL_TEXTURE_2D,
textures[i]);
148 glTexImage2D(GL_TEXTURE_2D,
157 glFramebufferTexture2D(
158 GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D,
textures[i], 0);
159 glBindFramebuffer(GL_FRAMEBUFFER, 0);
168 glBindBuffer(GL_ARRAY_BUFFER,
VBO_quad);
169 glBufferData(GL_ARRAY_BUFFER,
173 glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 0, (
void *)0);
174 glEnableVertexAttribArray(0);
void set_int(const std::string &name, int value) const
Bind the integer variable to the shader.
void use()
Activate built shader.
void build(const std::string &vs, const std::string &fs)
Read and build the shader.
void bind_fbs_and_textures()
void prepare_screen_quad_data()
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
std::array< unsigned int, num_of_textures > fbs
static constexpr size_t num_of_textures