The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 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_LAYER_H |
| 18 | #define ANDROID_LAYER_H |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <sys/types.h> |
| 22 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 23 | #include <EGL/egl.h> |
| 24 | #include <EGL/eglext.h> |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 25 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 26 | #include <utils/RefBase.h> |
| 27 | #include <utils/String8.h> |
| 28 | #include <utils/Timers.h> |
| 29 | |
Svetoslav | d85084b | 2014-03-20 10:28:31 -0700 | [diff] [blame] | 30 | #include <ui/FrameStats.h> |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 31 | #include <ui/GraphicBuffer.h> |
| 32 | #include <ui/PixelFormat.h> |
| 33 | #include <ui/Region.h> |
| 34 | |
| 35 | #include <gui/ISurfaceComposerClient.h> |
| 36 | |
| 37 | #include <private/gui/LayerState.h> |
| 38 | |
Jamie Gennis | 82dbc74 | 2012-11-08 19:23:28 -0800 | [diff] [blame] | 39 | #include "FrameTracker.h" |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 40 | #include "Client.h" |
Dan Stoza | b9b0883 | 2014-03-13 11:55:57 -0700 | [diff] [blame] | 41 | #include "MonitoredProducer.h" |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 42 | #include "SurfaceFlinger.h" |
| 43 | #include "SurfaceFlingerConsumer.h" |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 44 | #include "Transform.h" |
| 45 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 46 | #include "DisplayHardware/HWComposer.h" |
Mathias Agopian | 6b44267 | 2013-07-09 21:24:52 -0700 | [diff] [blame] | 47 | #include "DisplayHardware/FloatRect.h" |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 48 | #include "RenderEngine/Mesh.h" |
Mathias Agopian | 49457ac | 2013-08-14 18:20:17 -0700 | [diff] [blame] | 49 | #include "RenderEngine/Texture.h" |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 50 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 51 | namespace android { |
| 52 | |
| 53 | // --------------------------------------------------------------------------- |
| 54 | |
Mathias Agopian | 1f7bec6 | 2010-06-25 18:02:21 -0700 | [diff] [blame] | 55 | class Client; |
Mathias Agopian | 3e25fd8 | 2013-04-22 17:52:16 +0200 | [diff] [blame] | 56 | class Colorizer; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 57 | class DisplayDevice; |
| 58 | class GraphicBuffer; |
| 59 | class SurfaceFlinger; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 60 | |
| 61 | // --------------------------------------------------------------------------- |
| 62 | |
Andy McFadden | 882e3a3 | 2013-01-08 16:06:15 -0800 | [diff] [blame] | 63 | /* |
Andy McFadden | 882e3a3 | 2013-01-08 16:06:15 -0800 | [diff] [blame] | 64 | * A new BufferQueue and a new SurfaceFlingerConsumer are created when the |
| 65 | * Layer is first referenced. |
| 66 | * |
| 67 | * This also implements onFrameAvailable(), which notifies SurfaceFlinger |
| 68 | * that new data has arrived. |
| 69 | */ |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 70 | class Layer : public SurfaceFlingerConsumer::ContentsChangedListener { |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 71 | static int32_t sSequence; |
| 72 | |
Mathias Agopian | d606de6 | 2010-05-10 20:06:11 -0700 | [diff] [blame] | 73 | public: |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 74 | mutable bool contentDirty; |
| 75 | // regions below are in window-manager space |
| 76 | Region visibleRegion; |
| 77 | Region coveredRegion; |
| 78 | Region visibleNonTransparentRegion; |
Dan Stoza | ee44edd | 2015-03-23 15:50:23 -0700 | [diff] [blame] | 79 | Region surfaceDamageRegion; |
Andy McFadden | 4df87bd | 2014-04-21 18:08:54 -0700 | [diff] [blame] | 80 | |
| 81 | // Layer serial number. This gives layers an explicit ordering, so we |
| 82 | // have a stable sort order when their layer stack and Z-order are |
| 83 | // the same. |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 84 | int32_t sequence; |
| 85 | |
| 86 | enum { // flags for doTransaction() |
| 87 | eDontUpdateGeometryState = 0x00000001, |
| 88 | eVisibleRegion = 0x00000002, |
| 89 | }; |
| 90 | |
| 91 | struct Geometry { |
| 92 | uint32_t w; |
| 93 | uint32_t h; |
| 94 | Rect crop; |
| 95 | inline bool operator ==(const Geometry& rhs) const { |
| 96 | return (w == rhs.w && h == rhs.h && crop == rhs.crop); |
| 97 | } |
| 98 | inline bool operator !=(const Geometry& rhs) const { |
| 99 | return !operator ==(rhs); |
| 100 | } |
| 101 | }; |
| 102 | |
| 103 | struct State { |
| 104 | Geometry active; |
| 105 | Geometry requested; |
| 106 | uint32_t z; |
| 107 | uint32_t layerStack; |
| 108 | uint8_t alpha; |
| 109 | uint8_t flags; |
| 110 | uint8_t reserved[2]; |
| 111 | int32_t sequence; // changes when visible regions can change |
| 112 | Transform transform; |
Mathias Agopian | 2ca7939 | 2013-04-02 18:30:32 -0700 | [diff] [blame] | 113 | // the transparentRegion hint is a bit special, it's latched only |
| 114 | // when we receive a buffer -- this is because it's "content" |
| 115 | // dependent. |
| 116 | Region activeTransparentRegion; |
| 117 | Region requestedTransparentRegion; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 118 | }; |
| 119 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 120 | // ----------------------------------------------------------------------- |
| 121 | |
Mathias Agopian | 4d9b822 | 2013-03-12 17:11:48 -0700 | [diff] [blame] | 122 | Layer(SurfaceFlinger* flinger, const sp<Client>& client, |
| 123 | const String8& name, uint32_t w, uint32_t h, uint32_t flags); |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 124 | |
Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 125 | virtual ~Layer(); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 126 | |
Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 127 | // the this layer's size and format |
Mathias Agopian | 4d9b822 | 2013-03-12 17:11:48 -0700 | [diff] [blame] | 128 | status_t setBuffers(uint32_t w, uint32_t h, PixelFormat format, uint32_t flags); |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 129 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 130 | // modify current state |
| 131 | bool setPosition(float x, float y); |
| 132 | bool setLayer(uint32_t z); |
| 133 | bool setSize(uint32_t w, uint32_t h); |
| 134 | bool setAlpha(uint8_t alpha); |
| 135 | bool setMatrix(const layer_state_t::matrix22_t& matrix); |
| 136 | bool setTransparentRegionHint(const Region& transparent); |
| 137 | bool setFlags(uint8_t flags, uint8_t mask); |
| 138 | bool setCrop(const Rect& crop); |
| 139 | bool setLayerStack(uint32_t layerStack); |
| 140 | |
Dan Stoza | ee44edd | 2015-03-23 15:50:23 -0700 | [diff] [blame] | 141 | // If we have received a new buffer this frame, we will pass its surface |
| 142 | // damage down to hardware composer. Otherwise, we must send a region with |
| 143 | // one empty rect. |
| 144 | void useSurfaceDamage(); |
| 145 | void useEmptyDamage(); |
| 146 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 147 | uint32_t getTransactionFlags(uint32_t flags); |
| 148 | uint32_t setTransactionFlags(uint32_t flags); |
| 149 | |
Dan Stoza | c701401 | 2014-02-14 15:03:43 -0800 | [diff] [blame] | 150 | void computeGeometry(const sp<const DisplayDevice>& hw, Mesh& mesh, |
| 151 | bool useIdentityTransform) const; |
Michael Lentine | 6c925ed | 2014-09-26 17:55:01 -0700 | [diff] [blame] | 152 | Rect computeBounds(const Region& activeTransparentRegion) const; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 153 | Rect computeBounds() const; |
| 154 | |
Mathias Agopian | 4d9b822 | 2013-03-12 17:11:48 -0700 | [diff] [blame] | 155 | sp<IBinder> getHandle(); |
Dan Stoza | b9b0883 | 2014-03-13 11:55:57 -0700 | [diff] [blame] | 156 | sp<IGraphicBufferProducer> getProducer() const; |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 157 | const String8& getName() const; |
Mathias Agopian | 4d9b822 | 2013-03-12 17:11:48 -0700 | [diff] [blame] | 158 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 159 | // ----------------------------------------------------------------------- |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 160 | // Virtuals |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 161 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 162 | virtual const char* getTypeId() const { return "Layer"; } |
| 163 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 164 | /* |
| 165 | * isOpaque - true if this surface is opaque |
Andy McFadden | 4125a4f | 2014-01-29 17:17:11 -0800 | [diff] [blame] | 166 | * |
| 167 | * This takes into account the buffer format (i.e. whether or not the |
| 168 | * pixel format includes an alpha channel) and the "opaque" flag set |
| 169 | * on the layer. It does not examine the current plane alpha value. |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 170 | */ |
Andy McFadden | 4125a4f | 2014-01-29 17:17:11 -0800 | [diff] [blame] | 171 | virtual bool isOpaque(const Layer::State& s) const; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 172 | |
| 173 | /* |
| 174 | * isSecure - true if this surface is secure, that is if it prevents |
| 175 | * screenshots or VNC servers. |
| 176 | */ |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 177 | virtual bool isSecure() const { return mSecure; } |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 178 | |
| 179 | /* |
| 180 | * isProtected - true if the layer may contain protected content in the |
| 181 | * GRALLOC_USAGE_PROTECTED sense. |
| 182 | */ |
Jamie Gennis | 7a4d0df | 2011-03-09 17:05:02 -0800 | [diff] [blame] | 183 | virtual bool isProtected() const; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 184 | |
| 185 | /* |
| 186 | * isVisible - true if this layer is visible, false otherwise |
| 187 | */ |
Mathias Agopian | da27af9 | 2012-09-13 18:17:13 -0700 | [diff] [blame] | 188 | virtual bool isVisible() const; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 189 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 190 | /* |
| 191 | * isFixedSize - true if content has a fixed size |
| 192 | */ |
| 193 | virtual bool isFixedSize() const; |
Jamie Gennis | 582270d | 2011-08-17 18:19:00 -0700 | [diff] [blame] | 194 | |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 195 | protected: |
| 196 | /* |
| 197 | * onDraw - draws the surface. |
| 198 | */ |
Dan Stoza | c701401 | 2014-02-14 15:03:43 -0800 | [diff] [blame] | 199 | virtual void onDraw(const sp<const DisplayDevice>& hw, const Region& clip, |
| 200 | bool useIdentityTransform) const; |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 201 | |
| 202 | public: |
| 203 | // ----------------------------------------------------------------------- |
| 204 | |
| 205 | void setGeometry(const sp<const DisplayDevice>& hw, |
| 206 | HWComposer::HWCLayerInterface& layer); |
| 207 | void setPerFrameData(const sp<const DisplayDevice>& hw, |
| 208 | HWComposer::HWCLayerInterface& layer); |
| 209 | void setAcquireFence(const sp<const DisplayDevice>& hw, |
| 210 | HWComposer::HWCLayerInterface& layer); |
| 211 | |
Riley Andrews | 03414a1 | 2014-07-01 14:22:59 -0700 | [diff] [blame] | 212 | Rect getPosition(const sp<const DisplayDevice>& hw); |
| 213 | |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 214 | /* |
| 215 | * called after page-flip |
| 216 | */ |
| 217 | void onLayerDisplayed(const sp<const DisplayDevice>& hw, |
| 218 | HWComposer::HWCLayerInterface* layer); |
| 219 | |
Dan Stoza | 6b9454d | 2014-11-07 16:00:59 -0800 | [diff] [blame] | 220 | bool shouldPresentNow(const DispSync& dispSync) const; |
| 221 | |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 222 | /* |
| 223 | * called before composition. |
| 224 | * returns true if the layer has pending updates. |
| 225 | */ |
| 226 | bool onPreComposition(); |
| 227 | |
| 228 | /* |
| 229 | * called after composition. |
| 230 | */ |
| 231 | void onPostComposition(); |
| 232 | |
| 233 | /* |
| 234 | * draw - performs some global clipping optimizations |
| 235 | * and calls onDraw(). |
| 236 | */ |
| 237 | void draw(const sp<const DisplayDevice>& hw, const Region& clip) const; |
Dan Stoza | c701401 | 2014-02-14 15:03:43 -0800 | [diff] [blame] | 238 | void draw(const sp<const DisplayDevice>& hw, bool useIdentityTransform) const; |
| 239 | void draw(const sp<const DisplayDevice>& hw) const; |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 240 | |
| 241 | /* |
| 242 | * doTransaction - process the transaction. This is a good place to figure |
| 243 | * out which attributes of the surface have changed. |
| 244 | */ |
| 245 | uint32_t doTransaction(uint32_t transactionFlags); |
| 246 | |
| 247 | /* |
| 248 | * setVisibleRegion - called to set the new visible region. This gives |
| 249 | * a chance to update the new visible region or record the fact it changed. |
| 250 | */ |
| 251 | void setVisibleRegion(const Region& visibleRegion); |
| 252 | |
| 253 | /* |
| 254 | * setCoveredRegion - called when the covered region changes. The covered |
| 255 | * region corresponds to any area of the surface that is covered |
| 256 | * (transparently or not) by another surface. |
| 257 | */ |
| 258 | void setCoveredRegion(const Region& coveredRegion); |
| 259 | |
| 260 | /* |
| 261 | * setVisibleNonTransparentRegion - called when the visible and |
| 262 | * non-transparent region changes. |
| 263 | */ |
| 264 | void setVisibleNonTransparentRegion(const Region& |
| 265 | visibleNonTransparentRegion); |
| 266 | |
| 267 | /* |
| 268 | * latchBuffer - called each time the screen is redrawn and returns whether |
| 269 | * the visible regions need to be recomputed (this is a fairly heavy |
| 270 | * operation, so this should be set only if needed). Typically this is used |
| 271 | * to figure out if the content or size of a surface has changed. |
| 272 | */ |
| 273 | Region latchBuffer(bool& recomputeVisibleRegions); |
| 274 | |
Riley Andrews | 03414a1 | 2014-07-01 14:22:59 -0700 | [diff] [blame] | 275 | bool isPotentialCursor() const { return mPotentialCursor;} |
| 276 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 277 | /* |
| 278 | * called with the state lock when the surface is removed from the |
| 279 | * current list |
| 280 | */ |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 281 | void onRemoved(); |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 282 | |
| 283 | |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 284 | // Updates the transform hint in our SurfaceFlingerConsumer to match |
Mathias Agopian | 8430095 | 2012-11-21 16:02:13 -0800 | [diff] [blame] | 285 | // the current orientation of the display device. |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 286 | void updateTransformHint(const sp<const DisplayDevice>& hw) const; |
Andy McFadden | 6905205 | 2012-09-14 16:10:11 -0700 | [diff] [blame] | 287 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 288 | /* |
| 289 | * returns the rectangle that crops the content of the layer and scales it |
| 290 | * to the layer's size. |
| 291 | */ |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 292 | Rect getContentCrop() const; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 293 | |
Eric Penner | 51c59cd | 2014-07-28 19:51:58 -0700 | [diff] [blame] | 294 | /* |
| 295 | * Returns if a frame is queued. |
| 296 | */ |
chenhg | 0ea1cb9 | 2014-09-23 10:52:25 +0800 | [diff] [blame] | 297 | bool hasQueuedFrame() const { return mQueuedFrames > 0 || mSidebandStreamChanged; } |
Eric Penner | 51c59cd | 2014-07-28 19:51:58 -0700 | [diff] [blame] | 298 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 299 | // ----------------------------------------------------------------------- |
| 300 | |
| 301 | void clearWithOpenGL(const sp<const DisplayDevice>& hw, const Region& clip) const; |
| 302 | void setFiltering(bool filtering); |
| 303 | bool getFiltering() const; |
| 304 | |
| 305 | // only for debugging |
| 306 | inline const sp<GraphicBuffer>& getActiveBuffer() const { return mActiveBuffer; } |
| 307 | |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 308 | inline const State& getDrawingState() const { return mDrawingState; } |
| 309 | inline const State& getCurrentState() const { return mCurrentState; } |
| 310 | inline State& getCurrentState() { return mCurrentState; } |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 311 | |
| 312 | |
| 313 | /* always call base class first */ |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 314 | void dump(String8& result, Colorizer& colorizer) const; |
Svetoslav | d85084b | 2014-03-20 10:28:31 -0700 | [diff] [blame] | 315 | void dumpFrameStats(String8& result) const; |
| 316 | void clearFrameStats(); |
Jamie Gennis | 6547ff4 | 2013-07-16 20:12:42 -0700 | [diff] [blame] | 317 | void logFrameStats(); |
Svetoslav | d85084b | 2014-03-20 10:28:31 -0700 | [diff] [blame] | 318 | void getFrameStats(FrameStats* outStats) const; |
Mathias Agopian | 1b5e102 | 2010-04-20 17:55:49 -0700 | [diff] [blame] | 319 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 320 | protected: |
| 321 | // constant |
| 322 | sp<SurfaceFlinger> mFlinger; |
| 323 | |
| 324 | virtual void onFirstRef(); |
| 325 | |
| 326 | /* |
| 327 | * Trivial class, used to ensure that mFlinger->onLayerDestroyed(mLayer) |
| 328 | * is called. |
| 329 | */ |
| 330 | class LayerCleaner { |
| 331 | sp<SurfaceFlinger> mFlinger; |
| 332 | wp<Layer> mLayer; |
| 333 | protected: |
| 334 | ~LayerCleaner(); |
| 335 | public: |
| 336 | LayerCleaner(const sp<SurfaceFlinger>& flinger, const sp<Layer>& layer); |
| 337 | }; |
| 338 | |
Mathias Agopian | 2a9fc49 | 2013-03-01 13:42:57 -0800 | [diff] [blame] | 339 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 340 | private: |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 341 | // Interface implementation for SurfaceFlingerConsumer::ContentsChangedListener |
Dan Stoza | dc13c5b | 2015-05-11 15:33:01 -0700 | [diff] [blame] | 342 | virtual void onFrameAvailable(const BufferItem& item) override; |
| 343 | virtual void onFrameReplaced(const BufferItem& item) override; |
| 344 | virtual void onSidebandStreamChanged() override; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 345 | |
Mathias Agopian | 1eae0ee | 2013-06-05 16:59:15 -0700 | [diff] [blame] | 346 | void commitTransaction(); |
| 347 | |
| 348 | // needsLinearFiltering - true if this surface's state requires filtering |
| 349 | bool needsFiltering(const sp<const DisplayDevice>& hw) const; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 350 | |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 351 | uint32_t getEffectiveUsage(uint32_t usage) const; |
Mathias Agopian | 6b44267 | 2013-07-09 21:24:52 -0700 | [diff] [blame] | 352 | FloatRect computeCrop(const sp<const DisplayDevice>& hw) const; |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 353 | bool isCropped() const; |
| 354 | static bool getOpacityForFormat(uint32_t format); |
Mathias Agopian | 0aa758d | 2009-04-22 15:23:34 -0700 | [diff] [blame] | 355 | |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 356 | // drawing |
| 357 | void clearWithOpenGL(const sp<const DisplayDevice>& hw, const Region& clip, |
Mathias Agopian | 3f84483 | 2013-08-07 21:24:32 -0700 | [diff] [blame] | 358 | float r, float g, float b, float alpha) const; |
Dan Stoza | c701401 | 2014-02-14 15:03:43 -0800 | [diff] [blame] | 359 | void drawWithOpenGL(const sp<const DisplayDevice>& hw, const Region& clip, |
| 360 | bool useIdentityTransform) const; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 361 | |
Ruben Brunk | 1681d95 | 2014-06-27 15:51:55 -0700 | [diff] [blame] | 362 | // Temporary - Used only for LEGACY camera mode. |
| 363 | uint32_t getProducerStickyTransform() const; |
| 364 | |
Igor Murashkin | a4a3149 | 2012-10-29 13:36:11 -0700 | [diff] [blame] | 365 | |
Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 366 | // ----------------------------------------------------------------------- |
| 367 | |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 368 | // constants |
Andy McFadden | bf974ab | 2012-12-04 16:51:15 -0800 | [diff] [blame] | 369 | sp<SurfaceFlingerConsumer> mSurfaceFlingerConsumer; |
Dan Stoza | b9b0883 | 2014-03-13 11:55:57 -0700 | [diff] [blame] | 370 | sp<IGraphicBufferProducer> mProducer; |
Andy McFadden | 4df87bd | 2014-04-21 18:08:54 -0700 | [diff] [blame] | 371 | uint32_t mTextureName; // from GLES |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 372 | bool mPremultipliedAlpha; |
| 373 | String8 mName; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 374 | PixelFormat mFormat; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 375 | |
| 376 | // these are protected by an external lock |
| 377 | State mCurrentState; |
| 378 | State mDrawingState; |
| 379 | volatile int32_t mTransactionFlags; |
Mathias Agopian | d606de6 | 2010-05-10 20:06:11 -0700 | [diff] [blame] | 380 | |
Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 381 | // thread-safe |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 382 | volatile int32_t mQueuedFrames; |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 383 | volatile int32_t mSidebandStreamChanged; // used like an atomic boolean |
Jamie Gennis | 4b0eba9 | 2013-02-05 13:30:24 -0800 | [diff] [blame] | 384 | FrameTracker mFrameTracker; |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 385 | |
| 386 | // main thread |
| 387 | sp<GraphicBuffer> mActiveBuffer; |
Jesse Hall | 399184a | 2014-03-03 15:42:54 -0800 | [diff] [blame] | 388 | sp<NativeHandle> mSidebandStream; |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 389 | Rect mCurrentCrop; |
| 390 | uint32_t mCurrentTransform; |
Mathias Agopian | 933389f | 2011-07-18 16:15:08 -0700 | [diff] [blame] | 391 | uint32_t mCurrentScalingMode; |
Mathias Agopian | a67932f | 2011-04-20 14:20:59 -0700 | [diff] [blame] | 392 | bool mCurrentOpacity; |
Mathias Agopian | 4d143ee | 2012-02-23 20:05:39 -0800 | [diff] [blame] | 393 | bool mRefreshPending; |
Jamie Gennis | e8696a4 | 2012-01-15 18:54:57 -0800 | [diff] [blame] | 394 | bool mFrameLatencyNeeded; |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 395 | // Whether filtering is forced on or not |
| 396 | bool mFiltering; |
| 397 | // Whether filtering is needed b/c of the drawingstate |
| 398 | bool mNeedsFiltering; |
Mathias Agopian | 5cdc899 | 2013-08-13 20:51:23 -0700 | [diff] [blame] | 399 | // The mesh used to draw the layer in GLES composition mode |
| 400 | mutable Mesh mMesh; |
Andy McFadden | 4df87bd | 2014-04-21 18:08:54 -0700 | [diff] [blame] | 401 | // The texture used to draw the layer in GLES composition mode |
Mathias Agopian | 49457ac | 2013-08-14 18:20:17 -0700 | [diff] [blame] | 402 | mutable Texture mTexture; |
Mathias Agopian | d606de6 | 2010-05-10 20:06:11 -0700 | [diff] [blame] | 403 | |
Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 404 | // page-flip thread (currently main thread) |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 405 | bool mSecure; // no screenshots |
Glenn Kasten | 16f0453 | 2011-01-19 15:27:27 -0800 | [diff] [blame] | 406 | bool mProtectedByApp; // application requires protected path to external sink |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 407 | |
| 408 | // protected by mLock |
| 409 | mutable Mutex mLock; |
Mathias Agopian | 4d9b822 | 2013-03-12 17:11:48 -0700 | [diff] [blame] | 410 | // Set to true once we've returned this surface's handle |
Mathias Agopian | 13127d8 | 2013-03-05 17:47:11 -0800 | [diff] [blame] | 411 | mutable bool mHasSurface; |
| 412 | const wp<Client> mClientRef; |
Riley Andrews | 03414a1 | 2014-07-01 14:22:59 -0700 | [diff] [blame] | 413 | |
| 414 | // This layer can be a cursor on some displays. |
| 415 | bool mPotentialCursor; |
Dan Stoza | 6b9454d | 2014-11-07 16:00:59 -0800 | [diff] [blame] | 416 | |
| 417 | // Local copy of the queued contents of the incoming BufferQueue |
| 418 | mutable Mutex mQueueItemLock; |
Dan Stoza | a4650a5 | 2015-05-12 12:56:16 -0700 | [diff] [blame] | 419 | Condition mQueueItemCondition; |
Dan Stoza | 6b9454d | 2014-11-07 16:00:59 -0800 | [diff] [blame] | 420 | Vector<BufferItem> mQueueItems; |
Dan Stoza | a4650a5 | 2015-05-12 12:56:16 -0700 | [diff] [blame] | 421 | uint64_t mLastFrameNumberReceived; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 422 | }; |
| 423 | |
| 424 | // --------------------------------------------------------------------------- |
| 425 | |
| 426 | }; // namespace android |
| 427 | |
| 428 | #endif // ANDROID_LAYER_H |