render: refactor class member vars (#10292)
* render: refactor class member vars * render: fix clang format
This commit is contained in:
parent
c7eb141098
commit
997fefbc11
63 changed files with 1307 additions and 1321 deletions
|
|
@ -19,14 +19,14 @@ class CFramebuffer {
|
|||
SP<CTexture> getStencilTex();
|
||||
GLuint getFBID();
|
||||
|
||||
Vector2D m_vSize;
|
||||
Vector2D m_size;
|
||||
|
||||
private:
|
||||
SP<CTexture> m_cTex;
|
||||
GLuint m_iFb = -1;
|
||||
bool m_iFbAllocated = false;
|
||||
SP<CTexture> m_tex;
|
||||
GLuint m_fb = -1;
|
||||
bool m_fbAllocated = false;
|
||||
|
||||
SP<CTexture> m_pStencilTex;
|
||||
SP<CTexture> m_stencilTex;
|
||||
|
||||
friend class CRenderbuffer;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue