blob: cd13938ce55b4fd6e3ec9629c4d70fc123cb8fb3 [file] [log] [blame]
Andy McFaddenbf974ab2012-12-04 16:51:15 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef ANDROID_SURFACEFLINGERCONSUMER_H
18#define ANDROID_SURFACEFLINGERCONSUMER_H
19
Chia-I Wuf1405182017-11-27 11:29:21 -080020#include "BufferLayerConsumer.h"
Andy McFadden41d67d72014-04-25 16:58:34 -070021#include "DispSync.h"
Mathias Agopiana9347642017-02-13 16:42:28 -080022
23#include <ui/Region.h>
Andy McFaddenbf974ab2012-12-04 16:51:15 -080024
25namespace android {
26// ----------------------------------------------------------------------------
27
Pablo Ceballosce796e72016-02-04 19:10:51 -080028class Layer;
29
Andy McFaddenbf974ab2012-12-04 16:51:15 -080030/*
Chia-I Wuf1405182017-11-27 11:29:21 -080031 * This is a thin wrapper around BufferLayerConsumer.
Andy McFaddenbf974ab2012-12-04 16:51:15 -080032 */
Chia-I Wuf1405182017-11-27 11:29:21 -080033class SurfaceFlingerConsumer : public BufferLayerConsumer {
Andy McFaddenbf974ab2012-12-04 16:51:15 -080034public:
Dan Stozaecc50402015-04-28 14:42:06 -070035 static const status_t BUFFER_REJECTED = UNKNOWN_ERROR + 8;
36
Jesse Hall399184a2014-03-03 15:42:54 -080037 struct ContentsChangedListener: public FrameAvailableListener {
38 virtual void onSidebandStreamChanged() = 0;
39 };
40
Dan Stozab9b08832014-03-13 11:55:57 -070041 SurfaceFlingerConsumer(const sp<IGraphicBufferConsumer>& consumer,
Brian Andersond6927fb2016-07-23 23:37:30 -070042 uint32_t tex, Layer* layer)
Chia-I Wuf1405182017-11-27 11:29:21 -080043 : BufferLayerConsumer(consumer, tex, BufferLayerConsumer::TEXTURE_EXTERNAL, false, false),
Brian Anderson3546a3f2016-07-14 11:51:14 -070044 mTransformToDisplayInverse(false), mSurfaceDamage(), mLayer(layer)
Andy McFaddenbf974ab2012-12-04 16:51:15 -080045 {}
46
47 class BufferRejecter {
48 friend class SurfaceFlingerConsumer;
49 virtual bool reject(const sp<GraphicBuffer>& buf,
Dan Stoza11611f92015-03-12 15:12:44 -070050 const BufferItem& item) = 0;
Andy McFaddenbf974ab2012-12-04 16:51:15 -080051
52 protected:
53 virtual ~BufferRejecter() { }
54 };
55
Dan Stozaa4650a52015-05-12 12:56:16 -070056 virtual status_t acquireBufferLocked(BufferItem *item, nsecs_t presentWhen,
57 uint64_t maxFrameNumber = 0) override;
Mathias Agopianc1c05de2013-09-17 23:45:22 -070058
Andy McFaddenbf974ab2012-12-04 16:51:15 -080059 // This version of updateTexImage() takes a functor that may be used to
Chia-I Wuf1405182017-11-27 11:29:21 -080060 // reject the newly acquired buffer. Unlike the BufferLayerConsumer version,
Andy McFaddenbf974ab2012-12-04 16:51:15 -080061 // this does not guarantee that the buffer has been bound to the GL
62 // texture.
Dan Stozaa4650a52015-05-12 12:56:16 -070063 status_t updateTexImage(BufferRejecter* rejecter, const DispSync& dispSync,
Pablo Ceballosff95aab2016-01-13 17:09:58 -080064 bool* autoRefresh, bool* queuedBuffer,
Brian Anderson3546a3f2016-07-14 11:51:14 -070065 uint64_t maxFrameNumber);
Andy McFaddenbf974ab2012-12-04 16:51:15 -080066
Chia-I Wuf1405182017-11-27 11:29:21 -080067 // See BufferLayerConsumer::bindTextureImageLocked().
Andy McFadden97eba892012-12-11 15:21:45 -080068 status_t bindTextureImage();
Andy McFadden1585c4d2013-06-28 13:52:40 -070069
Mathias Agopianc1c05de2013-09-17 23:45:22 -070070 bool getTransformToDisplayInverse() const;
Robert Carr367c5682016-06-20 11:55:28 -070071
72 // must be called from SF main thread
Dan Stozaee44edd2015-03-23 15:50:23 -070073 const Region& getSurfaceDamage() const;
Mathias Agopianc1c05de2013-09-17 23:45:22 -070074
Jesse Hall399184a2014-03-03 15:42:54 -080075 // Sets the contents changed listener. This should be used instead of
76 // ConsumerBase::setFrameAvailableListener().
77 void setContentsChangedListener(const wp<ContentsChangedListener>& listener);
78
Andy McFadden41d67d72014-04-25 16:58:34 -070079 nsecs_t computeExpectedPresent(const DispSync& dispSync);
Mathias Agopianc1c05de2013-09-17 23:45:22 -070080
Brian Anderson3546a3f2016-07-14 11:51:14 -070081 sp<Fence> getPrevFinalReleaseFence() const;
Brian Anderson3546a3f2016-07-14 11:51:14 -070082 virtual void setReleaseFence(const sp<Fence>& fence) override;
Brian Anderson5ea5e592016-12-01 16:54:33 -080083 bool releasePendingBuffer();
Dan Stoza9e56aa02015-11-02 13:00:03 -080084
Brian Anderson5ea5e592016-12-01 16:54:33 -080085 void onDisconnect() override;
86 void addAndGetFrameTimestamps(
Brian Andersond6927fb2016-07-23 23:37:30 -070087 const NewFrameEventsEntry* newTimestamps,
Brian Anderson3890c392016-07-25 12:48:08 -070088 FrameEventHistoryDelta* outDelta) override;
Pablo Ceballosce796e72016-02-04 19:10:51 -080089
Dan Stoza6b9454d2014-11-07 16:00:59 -080090private:
Jesse Hall399184a2014-03-03 15:42:54 -080091 virtual void onSidebandStreamChanged();
92
93 wp<ContentsChangedListener> mContentsChangedListener;
94
Mathias Agopianc1c05de2013-09-17 23:45:22 -070095 // Indicates this buffer must be transformed by the inverse transform of the screen
Chia-I Wuf1405182017-11-27 11:29:21 -080096 // it is displayed onto. This is applied after BufferLayerConsumer::mCurrentTransform.
Mathias Agopianc1c05de2013-09-17 23:45:22 -070097 // This must be set/read from SurfaceFlinger's main thread.
98 bool mTransformToDisplayInverse;
Dan Stozaee44edd2015-03-23 15:50:23 -070099
100 // The portion of this surface that has changed since the previous frame
101 Region mSurfaceDamage;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800102
Dan Stoza9e56aa02015-11-02 13:00:03 -0800103 // A release that is pending on the receipt of a new release fence from
104 // presentDisplay
105 PendingRelease mPendingRelease;
Pablo Ceballos40845df2016-01-25 17:41:15 -0800106
Pablo Ceballosce796e72016-02-04 19:10:51 -0800107 // The layer for this SurfaceFlingerConsumer
Brian Andersond6927fb2016-07-23 23:37:30 -0700108 const wp<Layer> mLayer;
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800109};
110
111// ----------------------------------------------------------------------------
112}; // namespace android
113
114#endif // ANDROID_SURFACEFLINGERCONSUMER_H