|
@@ -24,7 +24,7 @@ public:
|
|
|
Framebuffer& operator=(Framebuffer&&) = delete;
|
|
|
|
|
|
template<typename... Args>
|
|
|
- bool init(const Size& size, Args&&... args) {
|
|
|
+ Error init(const Size& size, Args&&... args) {
|
|
|
const int n = sizeof...(args);
|
|
|
TextureFormat init[n] = {args...};
|
|
|
static_assert(N == n,
|
|
@@ -52,7 +52,7 @@ public:
|
|
|
}
|
|
|
GL::drawBuffers(attachments.getLength(), attachments.begin());
|
|
|
|
|
|
- return GL::printFramebufferError();
|
|
|
+ return GL::getFramebufferError();
|
|
|
}
|
|
|
|
|
|
void bindAndClear() {
|