mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-04 15:51:42 +00:00
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
/* ScummVM - Graphic Adventure Engine
|
|
*
|
|
* ScummVM is the legal property of its developers, whose names
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
* file distributed with this source distribution.
|
|
*
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#ifndef GRAPHICS_OPENGL_FRAMEBUFFER_H
|
|
#define GRAPHICS_OPENGL_FRAMEBUFFER_H
|
|
|
|
#include "graphics/opengl/system_headers.h"
|
|
#include "graphics/opengl/texture.h"
|
|
|
|
#if defined(USE_OPENGL_GAME) || defined(USE_OPENGL_SHADERS)
|
|
|
|
namespace OpenGL {
|
|
|
|
class FrameBuffer : public TextureGL {
|
|
public:
|
|
FrameBuffer(uint width, uint height);
|
|
FrameBuffer(GLuint texture_name, uint width, uint height, uint texture_width, uint texture_height);
|
|
#if defined(AMIGAOS) || defined(__MORPHOS__)
|
|
virtual ~FrameBuffer() {}
|
|
|
|
void attach() {}
|
|
void detach() {}
|
|
#else
|
|
virtual ~FrameBuffer();
|
|
|
|
virtual void attach();
|
|
virtual void detach();
|
|
#endif
|
|
|
|
protected:
|
|
GLuint getFrameBufferName() const { return _frameBuffer; }
|
|
|
|
private:
|
|
void init();
|
|
GLuint _renderBuffers[2];
|
|
GLuint _frameBuffer;
|
|
GLint _prevStateViewport[4];
|
|
};
|
|
|
|
#if !defined(USE_GLES2) && !defined(AMIGAOS) && !defined(__MORPHOS__)
|
|
class MultiSampleFrameBuffer : public FrameBuffer {
|
|
public:
|
|
MultiSampleFrameBuffer(uint width, uint height, int samples);
|
|
virtual ~MultiSampleFrameBuffer();
|
|
|
|
virtual void attach();
|
|
virtual void detach();
|
|
|
|
private:
|
|
void init();
|
|
GLuint _msFrameBufferId;
|
|
GLuint _msColorId;
|
|
GLuint _msDepthId;
|
|
GLuint _msSamples;
|
|
GLint _prevStateViewport[4];
|
|
};
|
|
#endif
|
|
|
|
} // End of namespace OpenGL
|
|
|
|
#endif // defined(USE_OPENGL_GAME) || defined(USE_OPENGL_SHADERS)
|
|
|
|
#endif
|