mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 12:25:59 +01:00
22 lines
No EOL
366 B
C++
22 lines
No EOL
366 B
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include "Texture.hpp"
|
|
|
|
class CFramebuffer {
|
|
public:
|
|
~CFramebuffer();
|
|
|
|
bool alloc(int w, int h);
|
|
void bind();
|
|
void release();
|
|
void reset();
|
|
bool isAllocated();
|
|
|
|
Vector2D m_vSize;
|
|
|
|
CTexture m_cTex;
|
|
GLuint m_iFb = -1;
|
|
|
|
CTexture* m_pStencilTex = nullptr;
|
|
}; |