groupbars: conserve VRAM by staticizing textures

This commit is contained in:
vaxerski 2023-05-22 22:06:40 +02:00
parent 7bcc01efb7
commit d1ec314a03
2 changed files with 19 additions and 14 deletions

View file

@ -3,6 +3,11 @@
#include <ranges>
#include <pango/pangocairo.h>
// shared things to conserve VRAM
static std::deque<std::unique_ptr<CTitleTex>> m_dpTitleTextures;
static CTexture m_tGradientActive;
static CTexture m_tGradientInactive;
CHyprGroupBarDecoration::CHyprGroupBarDecoration(CWindow* pWindow) {
m_pWindow = pWindow;
}
@ -166,8 +171,11 @@ void CHyprGroupBarDecoration::clearUnusedTextures() {
for (auto& tex : m_dpTitleTextures | std::views::reverse) {
bool found = false;
for (auto& w : m_dwGroupMembers) {
if (tex->szContent == w->m_szTitle && tex->pWindowOwner == w) {
for (auto& w : g_pCompositor->m_vWindows) {
if (!w->m_sGroupData.pNextWindow)
continue;
if (tex->szContent == w->m_szTitle && tex->pWindowOwner == w.get()) {
found = true;
break;
}

View file

@ -41,13 +41,10 @@ class CHyprGroupBarDecoration : public IHyprWindowDecoration {
Vector2D m_vLastWindowSize;
std::deque<CWindow*> m_dwGroupMembers;
std::deque<std::unique_ptr<CTitleTex>> m_dpTitleTextures;
CTitleTex* textureFromTitle(const std::string&);
void clearUnusedTextures();
void invalidateTextures();
void refreshGradients();
CTexture m_tGradientActive;
CTexture m_tGradientInactive;
};