Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8879d78f authored by Yi Kong's avatar Yi Kong Committed by android-build-merger
Browse files

Merge commit '3a75c70a' into manual_merge_3a75c70a0

am: 58f13854

Change-Id: I35459ad38954eb5a85c9dc74f22871f9cbe62ca4
parents e5cd4169 58f13854
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ class BufferItemConsumer: public ConsumerBase
            uint32_t consumerUsage, int bufferCount = DEFAULT_MAX_BUFFERS,
            bool controlledByApp = false);

    virtual ~BufferItemConsumer();
    ~BufferItemConsumer() override;

    // set the name of the BufferItemConsumer that will be used to identify it in
    // log messages.
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ public:
    class ProxyConsumerListener : public BnConsumerListener {
    public:
        explicit ProxyConsumerListener(const wp<ConsumerListener>& consumerListener);
        virtual ~ProxyConsumerListener();
        ~ProxyConsumerListener() const;
        void onDisconnect() override;
        void onFrameAvailable(const BufferItem& item) override;
        void onFrameReplaced(const BufferItem& item) override;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ class BufferQueueConsumer : public BnGraphicBufferConsumer {

public:
    BufferQueueConsumer(const sp<BufferQueueCore>& core);
    virtual ~BufferQueueConsumer();
    ~BufferQueueConsumer() override;

    // acquireBuffer attempts to acquire ownership of the next pending buffer in
    // the BufferQueue. If no buffer is pending then it returns
+1 −1
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ public:
    friend class BufferQueue; // Needed to access binderDied

    BufferQueueProducer(const sp<BufferQueueCore>& core, bool consumerIsSurfaceFlinger = false);
    virtual ~BufferQueueProducer();
    ~BufferQueueProducer() const;

    // requestBuffer returns the GraphicBuffer for slot N.
    //
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ public:
        virtual void onFrameReplaced(const BufferItem& /* item */) {}
    };

    virtual ~ConsumerBase();
    ~ConsumerBase() override;

    // abandon frees all the buffers and puts the ConsumerBase into the
    // 'abandoned' state.  Once put in this state the ConsumerBase can never
Loading