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