Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
Andy McFadden | 41d67d7 | 2014-04-25 16:58:34 -0700 | [diff] [blame] | 20 | #include "DispSync.h" |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 21 | #include <gui/GLConsumer.h> |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 22 | |
| 23 | namespace android { |
| 24 | // ---------------------------------------------------------------------------- |
| 25 | |
| 26 | /* |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 27 | * This is a thin wrapper around GLConsumer. |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 28 | */ |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 29 | class SurfaceFlingerConsumer : public GLConsumer { |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 30 | public: |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 31 | struct ContentsChangedListener: public FrameAvailableListener { |
| 32 | virtual void onSidebandStreamChanged() = 0; |
| 33 | }; |
| 34 | |
Dan Stoza | b9b0883 | 2014-03-13 11:55:57 -0700 | [diff] [blame] | 35 | SurfaceFlingerConsumer(const sp<IGraphicBufferConsumer>& consumer, |
| 36 | uint32_t tex) |
Dan Stoza | e49ba8e | 2014-06-24 13:09:19 -0700 | [diff] [blame] | 37 | : GLConsumer(consumer, tex, GLConsumer::TEXTURE_EXTERNAL, false, false), |
Dan Stoza | ee44edd | 2015-03-23 15:50:23 -0700 | [diff] [blame^] | 38 | mTransformToDisplayInverse(false), mSurfaceDamage() |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 39 | {} |
| 40 | |
| 41 | class BufferRejecter { |
| 42 | friend class SurfaceFlingerConsumer; |
| 43 | virtual bool reject(const sp<GraphicBuffer>& buf, |
Dan Stoza | 11611f9 | 2015-03-12 15:12:44 -0700 | [diff] [blame] | 44 | const BufferItem& item) = 0; |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 45 | |
| 46 | protected: |
| 47 | virtual ~BufferRejecter() { } |
| 48 | }; |
| 49 | |
Dan Stoza | 11611f9 | 2015-03-12 15:12:44 -0700 | [diff] [blame] | 50 | virtual status_t acquireBufferLocked(BufferItem *item, nsecs_t presentWhen); |
Mathias Agopian | c1c05de | 2013-09-17 23:45:22 -0700 | [diff] [blame] | 51 | |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 52 | // This version of updateTexImage() takes a functor that may be used to |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 53 | // reject the newly acquired buffer. Unlike the GLConsumer version, |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 54 | // this does not guarantee that the buffer has been bound to the GL |
| 55 | // texture. |
Andy McFadden | 41d67d7 | 2014-04-25 16:58:34 -0700 | [diff] [blame] | 56 | status_t updateTexImage(BufferRejecter* rejecter, const DispSync& dispSync); |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 57 | |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 58 | // See GLConsumer::bindTextureImageLocked(). |
Andy McFadden | 97eba89 | 2012-12-11 15:21:45 -0800 | [diff] [blame] | 59 | status_t bindTextureImage(); |
Andy McFadden | 1585c4d | 2013-06-28 13:52:40 -0700 | [diff] [blame] | 60 | |
Mathias Agopian | c1c05de | 2013-09-17 23:45:22 -0700 | [diff] [blame] | 61 | // must be called from SF main thread |
| 62 | bool getTransformToDisplayInverse() const; |
Dan Stoza | ee44edd | 2015-03-23 15:50:23 -0700 | [diff] [blame^] | 63 | const Region& getSurfaceDamage() const; |
Mathias Agopian | c1c05de | 2013-09-17 23:45:22 -0700 | [diff] [blame] | 64 | |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 65 | // Sets the contents changed listener. This should be used instead of |
| 66 | // ConsumerBase::setFrameAvailableListener(). |
| 67 | void setContentsChangedListener(const wp<ContentsChangedListener>& listener); |
| 68 | |
| 69 | sp<NativeHandle> getSidebandStream() const; |
| 70 | |
Andy McFadden | 41d67d7 | 2014-04-25 16:58:34 -0700 | [diff] [blame] | 71 | nsecs_t computeExpectedPresent(const DispSync& dispSync); |
Mathias Agopian | c1c05de | 2013-09-17 23:45:22 -0700 | [diff] [blame] | 72 | |
Dan Stoza | 6b9454d | 2014-11-07 16:00:59 -0800 | [diff] [blame] | 73 | private: |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 74 | virtual void onSidebandStreamChanged(); |
| 75 | |
| 76 | wp<ContentsChangedListener> mContentsChangedListener; |
| 77 | |
Mathias Agopian | c1c05de | 2013-09-17 23:45:22 -0700 | [diff] [blame] | 78 | // Indicates this buffer must be transformed by the inverse transform of the screen |
| 79 | // it is displayed onto. This is applied after GLConsumer::mCurrentTransform. |
| 80 | // This must be set/read from SurfaceFlinger's main thread. |
| 81 | bool mTransformToDisplayInverse; |
Dan Stoza | ee44edd | 2015-03-23 15:50:23 -0700 | [diff] [blame^] | 82 | |
| 83 | // The portion of this surface that has changed since the previous frame |
| 84 | Region mSurfaceDamage; |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 85 | }; |
| 86 | |
| 87 | // ---------------------------------------------------------------------------- |
| 88 | }; // namespace android |
| 89 | |
| 90 | #endif // ANDROID_SURFACEFLINGERCONSUMER_H |