Fixed window resizing

This commit is contained in:
Dynamitos
2025-04-11 21:02:52 +02:00
parent f4f497194a
commit cc3f36d7fa
17 changed files with 32 additions and 41 deletions
+2
View File
@@ -22,9 +22,11 @@ class Framebuffer {
virtual ~Framebuffer();
constexpr VkFramebuffer getHandle() const { return handle; }
constexpr uint32 getHash() const { return hash; }
constexpr VkRect2D getRenderArea() const { return renderArea; }
private:
uint32 hash;
VkRect2D renderArea;
PGraphics graphics;
VkFramebuffer handle;
Gfx::RenderTargetLayout layout;