From 58f04848a92e964c9e30c3852d79851e8cc146c0 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 2 Jun 2024 21:59:27 -0400 Subject: [PATCH] Fix: allow allocations on invisible areas. --- Outputs/ScanTargets/BufferingScanTarget.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Outputs/ScanTargets/BufferingScanTarget.cpp b/Outputs/ScanTargets/BufferingScanTarget.cpp index 741e30103..021f1981b 100644 --- a/Outputs/ScanTargets/BufferingScanTarget.cpp +++ b/Outputs/ScanTargets/BufferingScanTarget.cpp @@ -264,9 +264,6 @@ void BufferingScanTarget::announce(Event event, bool is_visible, const Outputs:: write_pointers_ = submit_pointers_.load(std::memory_order_relaxed); frame_is_complete_ &= !allocation_has_failed_; } - - // Don't permit anything to be allocated on invisible areas. - allocation_has_failed_ = true; } }