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