mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 07:13:57 +02:00
fixing syntax issues
This commit is contained in:
parent
5ebbdaca05
commit
8b97d2585a
3 changed files with 3 additions and 9 deletions
|
@ -15,12 +15,7 @@
|
|||
|
||||
using namespace gpu;
|
||||
|
||||
Framebuffer::Framebuffer()
|
||||
{
|
||||
}
|
||||
|
||||
Framebuffer::~Framebuffer()
|
||||
{
|
||||
Framebuffer::~Framebuffer() {
|
||||
}
|
||||
|
||||
Framebuffer* Framebuffer::create() {
|
||||
|
|
|
@ -149,7 +149,7 @@ protected:
|
|||
|
||||
// Non exposed
|
||||
Framebuffer(const Framebuffer& framebuffer) {}
|
||||
Framebuffer();
|
||||
Framebuffer() {}
|
||||
|
||||
// This shouldn't be used by anything else than the Backend class with the proper casting.
|
||||
mutable GPUObject* _gpuObject = NULL;
|
||||
|
|
|
@ -12,8 +12,7 @@
|
|||
#include "GLBackendShared.h"
|
||||
|
||||
|
||||
GLBackend::GLFramebuffer::GLFramebuffer()
|
||||
{}
|
||||
GLBackend::GLFramebuffer::GLFramebuffer() {}
|
||||
|
||||
GLBackend::GLFramebuffer::~GLFramebuffer() {
|
||||
if (_fbo != 0) {
|
||||
|
|
Loading…
Reference in a new issue