diff options
Diffstat (limited to 'services/surfaceflinger/TransactionCallbackInvoker.h')
-rw-r--r-- | services/surfaceflinger/TransactionCallbackInvoker.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/services/surfaceflinger/TransactionCallbackInvoker.h b/services/surfaceflinger/TransactionCallbackInvoker.h index f74f9644b6..7853a9f359 100644 --- a/services/surfaceflinger/TransactionCallbackInvoker.h +++ b/services/surfaceflinger/TransactionCallbackInvoker.h @@ -28,7 +28,6 @@ #include <android-base/thread_annotations.h> #include <binder/IBinder.h> #include <ftl/future.h> -#include <gui/BufferReleaseChannel.h> #include <gui/ITransactionCompletedListener.h> #include <ui/Fence.h> #include <ui/FenceResult.h> @@ -60,7 +59,6 @@ public: uint64_t frameNumber = 0; uint64_t previousFrameNumber = 0; ReleaseCallbackId previousReleaseCallbackId = ReleaseCallbackId::INVALID_ID; - std::shared_ptr<gui::BufferReleaseChannel::ProducerEndpoint> bufferReleaseChannel; }; class TransactionCallbackInvoker { @@ -88,13 +86,6 @@ private: std::unordered_map<sp<IBinder>, std::deque<TransactionStats>, IListenerHash> mCompletedTransactions; - struct BufferRelease { - std::shared_ptr<gui::BufferReleaseChannel::ProducerEndpoint> channel; - ReleaseCallbackId callbackId; - sp<Fence> fence; - }; - std::vector<BufferRelease> mBufferReleases; - sp<Fence> mPresentFence; }; |