steamcompmgr: Disable partial composition (for now until some critera are met)

This commit is contained in:
Joshua Ashton 2023-07-09 19:57:56 +01:00 committed by Joshie
parent 98335c8709
commit 3712ecdb3d

View file

@ -2457,6 +2457,13 @@ paint_all(bool async)
if ( bDoComposite == true )
{
// Disable partial composition for now until we get
// composite priorities working in libliftoff + also
// use the proper libliftoff composite plane system.
static constexpr bool kDisablePartialComposition = true;
if ( kDisablePartialComposition )
bNeedsFullComposite = true;
std::shared_ptr<CVulkanTexture> pPipewireTexture = nullptr;
#if HAVE_PIPEWIRE
if ( pw_buffer != nullptr )