2016-07-26 19:27:02 +00:00
|
|
|
#ifndef __GL_RENDERBUFFERS_H
|
|
|
|
#define __GL_RENDERBUFFERS_H
|
|
|
|
|
|
|
|
#include "gl/shaders/gl_shader.h"
|
|
|
|
|
2016-07-27 19:50:30 +00:00
|
|
|
class FGLBloomTextureLevel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GLuint VTexture = 0;
|
|
|
|
GLuint VFramebuffer = 0;
|
|
|
|
GLuint HTexture = 0;
|
|
|
|
GLuint HFramebuffer = 0;
|
|
|
|
GLuint Width = 0;
|
|
|
|
GLuint Height = 0;
|
|
|
|
};
|
|
|
|
|
2016-07-26 19:27:02 +00:00
|
|
|
class FGLRenderBuffers
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FGLRenderBuffers();
|
|
|
|
~FGLRenderBuffers();
|
|
|
|
|
2016-08-28 16:07:44 +00:00
|
|
|
bool Setup(int width, int height, int sceneWidth, int sceneHeight);
|
2016-08-04 15:16:49 +00:00
|
|
|
|
2016-07-26 19:27:02 +00:00
|
|
|
void BindSceneFB();
|
2016-08-04 15:16:49 +00:00
|
|
|
void BlitSceneToTexture();
|
|
|
|
|
|
|
|
void BindCurrentTexture(int index);
|
|
|
|
void BindCurrentFB();
|
|
|
|
void BindNextFB();
|
|
|
|
void NextTexture();
|
|
|
|
|
2016-07-26 19:27:02 +00:00
|
|
|
void BindOutputFB();
|
|
|
|
|
2016-07-27 19:50:30 +00:00
|
|
|
enum { NumBloomLevels = 4 };
|
|
|
|
FGLBloomTextureLevel BloomLevels[NumBloomLevels];
|
|
|
|
|
2016-07-29 19:31:20 +00:00
|
|
|
static bool IsEnabled();
|
|
|
|
|
2016-07-31 14:23:21 +00:00
|
|
|
int GetWidth() const { return mWidth; }
|
|
|
|
int GetHeight() const { return mHeight; }
|
|
|
|
|
2016-07-26 19:27:02 +00:00
|
|
|
private:
|
2016-07-30 13:33:30 +00:00
|
|
|
void ClearScene();
|
2016-08-04 15:16:49 +00:00
|
|
|
void ClearPipeline();
|
2016-07-30 13:33:30 +00:00
|
|
|
void ClearBloom();
|
|
|
|
void CreateScene(int width, int height, int samples);
|
2016-08-04 15:16:49 +00:00
|
|
|
void CreatePipeline(int width, int height);
|
2016-07-30 13:33:30 +00:00
|
|
|
void CreateBloom(int width, int height);
|
2016-08-17 21:18:47 +00:00
|
|
|
GLuint Create2DTexture(const FString &name, GLuint format, int width, int height);
|
|
|
|
GLuint CreateRenderBuffer(const FString &name, GLuint format, int width, int height);
|
|
|
|
GLuint CreateRenderBuffer(const FString &name, GLuint format, int samples, int width, int height);
|
|
|
|
GLuint CreateFrameBuffer(const FString &name, GLuint colorbuffer);
|
|
|
|
GLuint CreateFrameBuffer(const FString &name, GLuint colorbuffer, GLuint depthstencil, bool colorIsARenderBuffer);
|
|
|
|
GLuint CreateFrameBuffer(const FString &name, GLuint colorbuffer, GLuint depth, GLuint stencil, bool colorIsARenderBuffer);
|
2016-08-28 16:07:44 +00:00
|
|
|
bool CheckFrameBufferCompleteness();
|
2016-08-17 22:21:33 +00:00
|
|
|
void ClearFrameBuffer(bool stencil, bool depth);
|
2016-07-29 19:31:20 +00:00
|
|
|
void DeleteTexture(GLuint &handle);
|
|
|
|
void DeleteRenderBuffer(GLuint &handle);
|
|
|
|
void DeleteFrameBuffer(GLuint &handle);
|
2016-07-27 19:50:30 +00:00
|
|
|
|
2016-07-26 19:27:02 +00:00
|
|
|
int mWidth = 0;
|
|
|
|
int mHeight = 0;
|
2016-07-30 13:33:30 +00:00
|
|
|
int mSamples = 0;
|
2016-08-17 15:59:47 +00:00
|
|
|
int mMaxSamples = 0;
|
2016-08-12 15:44:59 +00:00
|
|
|
int mBloomWidth = 0;
|
|
|
|
int mBloomHeight = 0;
|
2016-07-26 19:27:02 +00:00
|
|
|
|
2016-08-04 15:16:49 +00:00
|
|
|
static const int NumPipelineTextures = 2;
|
|
|
|
int mCurrentPipelineTexture = 0;
|
|
|
|
|
|
|
|
// Buffers for the scene
|
2016-07-30 13:33:30 +00:00
|
|
|
GLuint mSceneMultisample = 0;
|
2016-07-26 19:27:02 +00:00
|
|
|
GLuint mSceneDepthStencil = 0;
|
2016-07-29 19:31:20 +00:00
|
|
|
GLuint mSceneDepth = 0;
|
|
|
|
GLuint mSceneStencil = 0;
|
2016-07-26 19:27:02 +00:00
|
|
|
GLuint mSceneFB = 0;
|
2016-08-04 15:16:49 +00:00
|
|
|
|
|
|
|
// Effect/HUD buffers
|
|
|
|
GLuint mPipelineTexture[NumPipelineTextures];
|
|
|
|
GLuint mPipelineFB[NumPipelineTextures];
|
|
|
|
|
|
|
|
// Back buffer frame buffer
|
2016-07-26 19:27:02 +00:00
|
|
|
GLuint mOutputFB = 0;
|
2016-08-28 16:07:44 +00:00
|
|
|
|
|
|
|
static bool FailedCreate;
|
2016-09-02 22:13:05 +00:00
|
|
|
static bool BuffersActive;
|
2016-07-26 19:27:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|