blob: 84dfeef12a6a4a4d13dc560170d2ae51af2604bd (
plain)
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
|
#pragma once
#include "../defines.hpp"
#include "Texture.hpp"
class CFramebuffer {
public:
CFramebuffer();
~CFramebuffer();
bool alloc(int w, int h, uint32_t format = GL_RGBA);
void addStencil(SP<CTexture> tex);
void bind();
void release();
void reset();
bool isAllocated();
SP<CTexture> getTexture();
SP<CTexture> getStencilTex();
GLuint getFBID();
Vector2D m_vSize;
private:
SP<CTexture> m_cTex;
GLuint m_iFb = -1;
bool m_iFbAllocated = false;
SP<CTexture> m_pStencilTex;
friend class CRenderbuffer;
};
|