-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdevice_framebuffer.cpp
285 lines (240 loc) Β· 9.08 KB
/
device_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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
// Copyright (C) 2020-2025 Sami VΓ€isΓ€nen
// Copyright (C) 2020-2025 Ensisoft http://www.ensisoft.com
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include "config.h"
#include "base/assert.h"
#include "base/logging.h"
#include "graphics/device_texture.h"
#include "graphics/device_framebuffer.h"
namespace gfx {
DeviceFramebuffer::~DeviceFramebuffer()
{
mTextures.clear();
if (mFramebuffer.IsValid())
{
mDevice->DeleteFramebuffer(mFramebuffer);
DEBUG("Deleted frame buffer object. [name='%1']", mName);
}
}
void DeviceFramebuffer::SetConfig(const Config& conf)
{
ASSERT(conf.color_target_count >= 1);
// we don't allow the config to be changed after it has been created.
// todo: delete the SetConfig API and take the FBO config in the
// device level API to create the FBO.
if (mFramebuffer.IsValid())
{
ASSERT(mConfig.format == conf.format);
ASSERT(mConfig.msaa == conf.msaa);
ASSERT(mConfig.color_target_count == conf.color_target_count);
// the size can change after the FBO has been created
// but only when the format is ColorRGBA8.
ASSERT(mConfig.format == Format::ColorRGBA8);
}
mConfig = conf;
mClientTextures.resize(mConfig.color_target_count);
mTextures.resize(mConfig.color_target_count);
}
void DeviceFramebuffer::SetColorTarget(gfx::Texture* texture, ColorAttachment attachment)
{
const auto index = static_cast<uint8_t>(attachment);
ASSERT(index < mConfig.color_target_count);
if (texture == mClientTextures[index])
return;
mClientTextures[index] = static_cast<gfx::DeviceTexture*>(texture);
// if we have a client texture the client texture drives the FBO size.
// Otherwise the FBO size is based on the size set in the FBO config.
//
// The render target (and the resolve target) textures are allowed
// to change during the lifetime of the FBO but when the texture is
// changed after the FBO has been created the texture size must match
// the size used to create the other attachments (if any)
if (mClientTextures[index])
{
const auto width = mClientTextures[index]->GetWidth();
const auto height = mClientTextures[index]->GetHeight();
// don't allow zero size texture.
ASSERT(width && height);
// if the FBO has been created and the format is such that there
// are other attachments then the client texture size must
// match the size of the other attachments. otherwise the FBO
// is in invalid state.
if (mFramebuffer.IsValid() && (mConfig.format != Format::ColorRGBA8))
{
ASSERT(width == mConfig.width);
ASSERT(height == mConfig.height);
}
}
// check that every client provided texture has the same size.
unsigned width = 0;
unsigned height = 0;
for (size_t i=0; i<mClientTextures.size(); ++i)
{
if (!mClientTextures[i])
continue;
if (width == 0 && height == 0)
{
width = mClientTextures[i]->GetWidth();
height = mClientTextures[i]->GetHeight();
}
else
{
ASSERT(mClientTextures[i]->GetWidth() == width);
ASSERT(mClientTextures[i]->GetHeight() == height);
}
}
}
void DeviceFramebuffer::Resolve(gfx::Texture** color, ColorAttachment attachment) const
{
const auto index = static_cast<uint8_t>(attachment);
// resolve the MSAA render buffer into a texture target with glBlitFramebuffer
// the insane part here is that we need a *another* frame buffer for resolving
// the multisampled color attachment into a texture.
if (const auto samples = mFramebuffer.samples)
{
auto* resolve_target = GetColorBufferTexture(index);
mDevice->ResolveFramebuffer(mFramebuffer, resolve_target->GetTexture(), index);
if (color)
*color = resolve_target;
}
else
{
auto* texture = GetColorBufferTexture(index);
if (color)
*color = texture;
}
}
unsigned DeviceFramebuffer::GetWidth() const
{
if (mClientTextures.empty())
return mConfig.width;
return mClientTextures[0]->GetWidth();
}
unsigned DeviceFramebuffer::GetHeight() const
{
if (mClientTextures.empty())
return mConfig.height;
return mClientTextures[0]->GetHeight();
}
gfx::DeviceTexture* DeviceFramebuffer::GetColorBufferTexture(unsigned index) const noexcept
{
if (mClientTextures[index])
return mClientTextures[index];
return mTextures[index].get();
}
bool DeviceFramebuffer::Complete()
{
// in case of a multisampled FBO the color attachment is a multisampled render buffer
// and the resolve client texture will be the *resolve* target in the blit framebuffer operation.
if (const auto samples = mFramebuffer.samples)
{
CreateColorBufferTextures();
const auto* resolve_target = GetColorBufferTexture(0);
const unsigned width = resolve_target->GetWidth();
const unsigned height = resolve_target->GetHeight();
for (unsigned i=0; i<mConfig.color_target_count; ++i)
{
mDevice->AllocateRenderTarget(mFramebuffer, i, width, height);
}
}
else
{
CreateColorBufferTextures();
for (unsigned i=0; i<mConfig.color_target_count; ++i)
{
auto* color_target = GetColorBufferTexture(i);
// in case of a single sampled FBO the resolve target can be used directly
// as the color attachment in the FBO.
mDevice->BindRenderTargetTexture2D(mFramebuffer, color_target->GetTexture(), i);
}
}
std::vector<unsigned> color_attachments;
for (unsigned i=0; i<mConfig.color_target_count; ++i)
color_attachments.push_back(i);
if (!mDevice->CompleteFramebuffer(mFramebuffer, color_attachments))
{
ERROR("Unsupported framebuffer configuration. [name='%1']", mName);
return false;
}
return true;
}
bool DeviceFramebuffer::Create()
{
ASSERT(!mFramebuffer.IsValid());
CreateColorBufferTextures();
auto* texture = GetColorBufferTexture(0);
const auto width = texture->GetWidth();
const auto height = texture->GetHeight();
dev::FramebufferConfig config;
config.width = width;
config.height = height;
config.msaa = IsMultisampled();
config.format = mConfig.format;
mFramebuffer = mDevice->CreateFramebuffer(config);
DEBUG("Created new frame buffer object. [name='%1', width=%2, height=%3, format=%4, samples=%5]",
mName, width, height, mConfig.format, config.msaa);
// commit the size
mConfig.width = width;
mConfig.height = height;
return true;
}
void DeviceFramebuffer::SetFrameStamp(size_t stamp)
{
for (auto& texture : mTextures)
{
if (texture)
texture->SetFrameStamp(stamp);
}
for (auto* texture : mClientTextures)
{
if (texture)
texture->SetFrameStamp(stamp);
}
mFrameNumber = stamp;
}
void DeviceFramebuffer::CreateColorBufferTextures()
{
mClientTextures.resize(mConfig.color_target_count);
mTextures.resize(mConfig.color_target_count);
for (unsigned i=0; i<mConfig.color_target_count; ++i)
{
if (mClientTextures[i])
continue;
// we must have FBO width and height for creating
// the color buffer texture.
ASSERT(mConfig.width && mConfig.height);
if (!mTextures[i])
{
const auto texture_name = "FBO/" + mName + "/Color" + std::to_string(i);
mTextures[i] = std::make_unique<gfx::DeviceTexture>(mDevice, texture_name);
mTextures[i]->SetName(texture_name);
mTextures[i]->Allocate(mConfig.width, mConfig.height, gfx::Texture::Format::sRGBA);
mTextures[i]->SetFilter(gfx::Texture::MinFilter::Linear);
mTextures[i]->SetFilter(gfx::Texture::MagFilter::Linear);
mTextures[i]->SetWrapX(gfx::Texture::Wrapping::Clamp);
mTextures[i]->SetWrapY(gfx::Texture::Wrapping::Clamp);
DEBUG("Allocated new FBO color buffer (texture) target. [name='%1', width=%2, height=%3]]", mName,
mConfig.width, mConfig.height);
}
else
{
const auto width = mTextures[i]->GetWidth();
const auto height = mTextures[i]->GetHeight();
if (width != mConfig.width || height != mConfig.height)
mTextures[i]->Allocate(mConfig.width, mConfig.height, gfx::Texture::Format::sRGBA);
}
}
}
} // namespace