render: enforce framebuffer offloading and remove introspection toggle (#9217)

This commit is contained in:
nyx 2025-01-31 11:08:43 -05:00 committed by GitHub
parent a4b7d1c2d7
commit ddf180fa30
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 10 additions and 153 deletions

View file

@ -17,10 +17,6 @@ bool CRenderPass::single() const {
return m_vPassElements.size() == 1;
}
bool CRenderPass::needsIntrospection() const {
return true;
}
void CRenderPass::add(SP<IPassElement> el) {
m_vPassElements.emplace_back(makeShared<SPassElementData>(CRegion{}, el));
}

View file

@ -10,7 +10,6 @@ class CRenderPass {
public:
bool empty() const;
bool single() const;
bool needsIntrospection() const;
void add(SP<IPassElement> elem);
void clear();