-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframebuffer.cpp
132 lines (111 loc) · 3.85 KB
/
framebuffer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#include "framebuffer.hpp"
#include "logging.hpp"
#include "texture.hpp"
namespace
{
logger log() { return get_logger("framebuffer"); }
} // namespace
struct framebuffer::private_data
{
glm::uvec2 _size { 0, 0 };
unsigned _fbo { 0 };
unsigned _copy_fbo { 0 };
unsigned _sample_count { 1 };
std::shared_ptr<texture> _color_texture { std::make_shared<texture>() };
std::shared_ptr<texture> _depth_texture { std::make_shared<texture>() };
};
framebuffer::framebuffer() { _p = std::make_unique<private_data>(); }
framebuffer::~framebuffer() { destroy(); }
void framebuffer::initialize()
{
if (_p->_fbo == 0)
{
glGenFramebuffers(1, &_p->_fbo);
}
bind();
_p->_color_texture->init(_p->_size.x, _p->_size.y, texture::format::RGBA);
_p->_depth_texture->init(_p->_size.x, _p->_size.y, texture::format::DEPTH);
log()->info("Framebuffer {}:\n\ttextures::color {}\n\ttextures::depth{}",
_p->_fbo,
_p->_color_texture->native_id(),
_p->_depth_texture->native_id());
glFramebufferTexture2D(GL_FRAMEBUFFER,
GL_COLOR_ATTACHMENT0,
_p->_sample_count > 1 ? GL_TEXTURE_2D_MULTISAMPLE
: GL_TEXTURE_2D,
_p->_color_texture->native_id(),
0);
glFramebufferTexture2D(GL_FRAMEBUFFER,
GL_DEPTH_ATTACHMENT,
_p->_sample_count > 1 ? GL_TEXTURE_2D_MULTISAMPLE
: GL_TEXTURE_2D,
_p->_depth_texture->native_id(),
0);
auto fbo_status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
if (fbo_status != GL_FRAMEBUFFER_COMPLETE)
{
log()->error(
"Framebuffer {} is not complete! {}", _p->_fbo, fbo_status);
unbind();
return;
}
std::array<unsigned, 1> buffers { GL_COLOR_ATTACHMENT0 };
glDrawBuffers(buffers.size(), buffers.data());
}
void framebuffer::destroy() { glDeleteFramebuffers(1, &_p->_fbo); }
void framebuffer::set_samples(unsigned sample_count)
{
_p->_sample_count = sample_count;
_p->_color_texture->set_samples(sample_count);
_p->_depth_texture->set_samples(sample_count);
}
std::shared_ptr<const texture> framebuffer::color_texture() const
{
return _p->_color_texture;
}
std::shared_ptr<const texture> framebuffer::depth_texture() const
{
return _p->_depth_texture;
}
void framebuffer::copy_texture(texture* txt) const
{
if (_p->_sample_count == 1)
{
txt->clone(color_texture().get());
return;
}
txt->init(_p->_size.x, _p->_size.y);
if (_p->_copy_fbo == 0)
{
glGenFramebuffers(1, &_p->_copy_fbo);
}
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, _p->_copy_fbo);
glFramebufferTexture2D(GL_DRAW_FRAMEBUFFER,
GL_COLOR_ATTACHMENT0,
GL_TEXTURE_2D,
txt->native_id(),
0);
glBindFramebuffer(GL_READ_FRAMEBUFFER, _p->_fbo);
glBlitFramebuffer(0,
0,
_p->_size.x,
_p->_size.y,
0,
0,
_p->_size.x,
_p->_size.y,
GL_COLOR_BUFFER_BIT,
GL_NEAREST);
glBindFramebuffer(GL_FRAMEBUFFER, 0);
}
void framebuffer::resize(glm::uvec2 size)
{
if (_p->_size != size)
{
_p->_size = size;
_p->_color_texture->init(size.x, size.y, texture::format::RGBA);
_p->_depth_texture->init(size.x, size.y, texture::format::DEPTH);
}
}
void framebuffer::bind() { glBindFramebuffer(GL_FRAMEBUFFER, _p->_fbo); }
void framebuffer::unbind() { glBindFramebuffer(GL_FRAMEBUFFER, 0); }