blob: 7c6bc59cfa0bc11ecff00103aa0a8b53ed45a631 [file] [log] [blame]
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -08001/*
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 Agopian13127d82013-03-05 17:47:11 -080023#include <utils/RefBase.h>
24#include <utils/String8.h>
25#include <utils/Timers.h>
26
Svetoslavd85084b2014-03-20 10:28:31 -070027#include <ui/FrameStats.h>
Mathias Agopian13127d82013-03-05 17:47:11 -080028#include <ui/GraphicBuffer.h>
29#include <ui/PixelFormat.h>
30#include <ui/Region.h>
31
32#include <gui/ISurfaceComposerClient.h>
Robert Carr4cdc58f2017-08-23 14:22:20 -070033#include <gui/LayerState.h>
Mathias Agopian13127d82013-03-05 17:47:11 -080034
Dan Stoza7dde5992015-05-22 09:51:44 -070035#include <list>
36
Mathias Agopian13127d82013-03-05 17:47:11 -080037#include "Client.h"
David Sodman41fdfc92017-11-06 16:09:56 -080038#include "FrameTracker.h"
Robert Carr1f0a16a2016-10-24 16:27:39 -070039#include "LayerVector.h"
Dan Stozab9b08832014-03-13 11:55:57 -070040#include "MonitoredProducer.h"
Mathias Agopian13127d82013-03-05 17:47:11 -080041#include "SurfaceFlinger.h"
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080042#include "Transform.h"
43
David Sodman41fdfc92017-11-06 16:09:56 -080044#include <layerproto/LayerProtoHeader.h>
Mathias Agopian13127d82013-03-05 17:47:11 -080045#include "DisplayHardware/HWComposer.h"
Chia-I Wuaaff73f2017-02-13 12:28:24 -080046#include "DisplayHardware/HWComposerBufferCache.h"
David Sodman41fdfc92017-11-06 16:09:56 -080047#include "RenderArea.h"
Mathias Agopian3f844832013-08-07 21:24:32 -070048#include "RenderEngine/Mesh.h"
Mathias Agopian49457ac2013-08-14 18:20:17 -070049#include "RenderEngine/Texture.h"
Mathias Agopian13127d82013-03-05 17:47:11 -080050
chaviw13fdc492017-06-27 12:40:18 -070051#include <math/vec4.h>
52
chaviw1d044282017-09-27 12:19:28 -070053using namespace android::surfaceflinger;
54
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080055namespace android {
56
57// ---------------------------------------------------------------------------
58
Mathias Agopian1f7bec62010-06-25 18:02:21 -070059class Client;
Mathias Agopian3e25fd82013-04-22 17:52:16 +020060class Colorizer;
Mathias Agopian13127d82013-03-05 17:47:11 -080061class DisplayDevice;
62class GraphicBuffer;
63class SurfaceFlinger;
Kalle Raitaa099a242017-01-11 11:17:29 -080064class LayerDebugInfo;
David Sodman9eeae692017-11-02 10:53:32 -070065class LayerBE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -080066
67// ---------------------------------------------------------------------------
68
David Sodman9eeae692017-11-02 10:53:32 -070069class LayerBE {
70public:
71 LayerBE();
72
David Sodman5b4cffc2017-11-23 13:20:29 -080073 // main thread
74 int mBufferSlot;
75 sp<GraphicBuffer> mBuffer;
David Sodman386c22e2017-11-09 16:34:46 -080076 sp<NativeHandle> mSidebandStream;
77
David Sodman9eeae692017-11-02 10:53:32 -070078 // The mesh used to draw the layer in GLES composition mode
79 Mesh mMesh;
80
David Sodman6f65f3e2017-11-03 14:28:09 -070081 // HWC items, accessed from the main thread
82 struct HWCInfo {
83 HWCInfo()
84 : hwc(nullptr),
85 layer(nullptr),
86 forceClientComposition(false),
87 compositionType(HWC2::Composition::Invalid),
88 clearClientTarget(false) {}
89
90 HWComposer* hwc;
91 HWC2::Layer* layer;
92 bool forceClientComposition;
93 HWC2::Composition compositionType;
94 bool clearClientTarget;
95 Rect displayFrame;
96 FloatRect sourceCrop;
97 HWComposerBufferCache bufferCache;
98 };
99
100 // A layer can be attached to multiple displays when operating in mirror mode
101 // (a.k.a: when several displays are attached with equal layerStack). In this
102 // case we need to keep track. In non-mirror mode, a layer will have only one
103 // HWCInfo. This map key is a display layerStack.
104 std::unordered_map<int32_t, HWCInfo> mHwcLayers;
David Sodman9eeae692017-11-02 10:53:32 -0700105};
106
David Sodman41fdfc92017-11-06 16:09:56 -0800107class Layer : public virtual RefBase {
Mathias Agopian13127d82013-03-05 17:47:11 -0800108 static int32_t sSequence;
109
Mathias Agopiand606de62010-05-10 20:06:11 -0700110public:
David Sodman9eeae692017-11-02 10:53:32 -0700111 LayerBE& getBE() { return mBE; }
112 LayerBE& getBE() const { return mBE; }
Mathias Agopian13127d82013-03-05 17:47:11 -0800113 mutable bool contentDirty;
114 // regions below are in window-manager space
115 Region visibleRegion;
116 Region coveredRegion;
117 Region visibleNonTransparentRegion;
Dan Stozaee44edd2015-03-23 15:50:23 -0700118 Region surfaceDamageRegion;
Andy McFadden4df87bd2014-04-21 18:08:54 -0700119
120 // Layer serial number. This gives layers an explicit ordering, so we
121 // have a stable sort order when their layer stack and Z-order are
122 // the same.
Mathias Agopian13127d82013-03-05 17:47:11 -0800123 int32_t sequence;
124
125 enum { // flags for doTransaction()
126 eDontUpdateGeometryState = 0x00000001,
127 eVisibleRegion = 0x00000002,
128 };
129
130 struct Geometry {
131 uint32_t w;
132 uint32_t h;
Robert Carr3dcabfa2016-03-01 18:36:58 -0800133 Transform transform;
134
David Sodman41fdfc92017-11-06 16:09:56 -0800135 inline bool operator==(const Geometry& rhs) const {
136 return (w == rhs.w && h == rhs.h) && (transform.tx() == rhs.transform.tx()) &&
Robert Carr99e27f02016-06-16 15:18:02 -0700137 (transform.ty() == rhs.transform.ty());
Mathias Agopian13127d82013-03-05 17:47:11 -0800138 }
David Sodman41fdfc92017-11-06 16:09:56 -0800139 inline bool operator!=(const Geometry& rhs) const { return !operator==(rhs); }
Mathias Agopian13127d82013-03-05 17:47:11 -0800140 };
141
142 struct State {
143 Geometry active;
144 Geometry requested;
Robert Carrae060832016-11-28 10:51:00 -0800145 int32_t z;
Fabien Sanglardf0c53d62017-03-03 18:58:50 -0800146
147 // The identifier of the layer stack this layer belongs to. A layer can
148 // only be associated to a single layer stack. A layer stack is a
149 // z-ordered group of layers which can be associated to one or more
150 // displays. Using the same layer stack on different displays is a way
151 // to achieve mirroring.
Mathias Agopian13127d82013-03-05 17:47:11 -0800152 uint32_t layerStack;
Fabien Sanglardf0c53d62017-03-03 18:58:50 -0800153
Mathias Agopian13127d82013-03-05 17:47:11 -0800154 uint8_t flags;
Dan Stoza7dde5992015-05-22 09:51:44 -0700155 uint8_t mask;
Mathias Agopian13127d82013-03-05 17:47:11 -0800156 uint8_t reserved[2];
157 int32_t sequence; // changes when visible regions can change
Dan Stoza7dde5992015-05-22 09:51:44 -0700158 bool modified;
159
Fabien Sanglard4ed383c2016-12-13 14:02:41 -0800160 // Crop is expressed in layer space coordinate.
Robert Carrb5d3d262016-03-25 15:08:13 -0700161 Rect crop;
Robert Carr99e27f02016-06-16 15:18:02 -0700162 Rect requestedCrop;
163
Fabien Sanglard4ed383c2016-12-13 14:02:41 -0800164 // finalCrop is expressed in display space coordinate.
Robert Carrb5d3d262016-03-25 15:08:13 -0700165 Rect finalCrop;
Robert Carr8d5227b2017-03-16 15:41:03 -0700166 Rect requestedFinalCrop;
Robert Carrb5d3d262016-03-25 15:08:13 -0700167
Robert Carr0d480722017-01-10 16:42:54 -0800168 // If set, defers this state update until the identified Layer
Dan Stoza7dde5992015-05-22 09:51:44 -0700169 // receives a frame with the given frameNumber
Robert Carr0d480722017-01-10 16:42:54 -0800170 wp<Layer> barrierLayer;
Dan Stoza7dde5992015-05-22 09:51:44 -0700171 uint64_t frameNumber;
172
Mathias Agopian2ca79392013-04-02 18:30:32 -0700173 // the transparentRegion hint is a bit special, it's latched only
174 // when we receive a buffer -- this is because it's "content"
175 // dependent.
176 Region activeTransparentRegion;
177 Region requestedTransparentRegion;
Courtney Goeltzenleuchterbb09b432016-11-30 13:51:28 -0700178 android_dataspace dataSpace;
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -0500179
180 uint32_t appId;
181 uint32_t type;
Robert Carrdb66e622017-04-10 16:55:57 -0700182
183 // If non-null, a Surface this Surface's Z-order is interpreted relative to.
184 wp<Layer> zOrderRelativeOf;
185
186 // A list of surfaces whose Z-order is interpreted relative to ours.
187 SortedVector<wp<Layer>> zOrderRelatives;
chaviw13fdc492017-06-27 12:40:18 -0700188
189 half4 color;
Mathias Agopian13127d82013-03-05 17:47:11 -0800190 };
191
David Sodman41fdfc92017-11-06 16:09:56 -0800192 Layer(SurfaceFlinger* flinger, const sp<Client>& client, const String8& name, uint32_t w,
193 uint32_t h, uint32_t flags);
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700194 virtual ~Layer();
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800195
Chia-I Wuab0c3192017-08-01 11:29:00 -0700196 void setPrimaryDisplayOnly() { mPrimaryDisplayOnly = true; }
197
Robert Carr7bf247e2017-05-18 14:02:49 -0700198 // ------------------------------------------------------------------------
199 // Geometry setting functions.
200 //
201 // The following group of functions are used to specify the layers
202 // bounds, and the mapping of the texture on to those bounds. According
203 // to various settings changes to them may apply immediately, or be delayed until
204 // a pending resize is completed by the producer submitting a buffer. For example
205 // if we were to change the buffer size, and update the matrix ahead of the
206 // new buffer arriving, then we would be stretching the buffer to a different
207 // aspect before and after the buffer arriving, which probably isn't what we wanted.
208 //
209 // The first set of geometry functions are controlled by the scaling mode, described
210 // in window.h. The scaling mode may be set by the client, as it submits buffers.
211 // This value may be overriden through SurfaceControl, with setOverrideScalingMode.
212 //
213 // Put simply, if our scaling mode is SCALING_MODE_FREEZE, then
214 // matrix updates will not be applied while a resize is pending
215 // and the size and transform will remain in their previous state
216 // until a new buffer is submitted. If the scaling mode is another value
217 // then the old-buffer will immediately be scaled to the pending size
218 // and the new matrix will be immediately applied following this scaling
219 // transformation.
Robert Carr8d5227b2017-03-16 15:41:03 -0700220
Robert Carr7bf247e2017-05-18 14:02:49 -0700221 // Set the default buffer size for the assosciated Producer, in pixels. This is
222 // also the rendered size of the layer prior to any transformations. Parent
223 // or local matrix transformations will not affect the size of the buffer,
224 // but may affect it's on-screen size or clipping.
225 bool setSize(uint32_t w, uint32_t h);
226 // Set a 2x2 transformation matrix on the layer. This transform
227 // will be applied after parent transforms, but before any final
228 // producer specified transform.
229 bool setMatrix(const layer_state_t::matrix22_t& matrix);
230
231 // This second set of geometry attributes are controlled by
232 // setGeometryAppliesWithResize, and their default mode is to be
233 // immediate. If setGeometryAppliesWithResize is specified
234 // while a resize is pending, then update of these attributes will
235 // be delayed until the resize completes.
236
237 // setPosition operates in parent buffer space (pre parent-transform) or display
238 // space for top-level layers.
Robert Carr82364e32016-05-15 11:27:47 -0700239 bool setPosition(float x, float y, bool immediate);
Robert Carr7bf247e2017-05-18 14:02:49 -0700240 // Buffer space
Robert Carr8d5227b2017-03-16 15:41:03 -0700241 bool setCrop(const Rect& crop, bool immediate);
Robert Carr7bf247e2017-05-18 14:02:49 -0700242 // Parent buffer space/display space
Robert Carr8d5227b2017-03-16 15:41:03 -0700243 bool setFinalCrop(const Rect& crop, bool immediate);
244
Robert Carr7bf247e2017-05-18 14:02:49 -0700245 // TODO(b/38182121): Could we eliminate the various latching modes by
246 // using the layer hierarchy?
247 // -----------------------------------------------------------------------
Robert Carrae060832016-11-28 10:51:00 -0800248 bool setLayer(int32_t z);
Robert Carrdb66e622017-04-10 16:55:57 -0700249 bool setRelativeLayer(const sp<IBinder>& relativeToHandle, int32_t relativeZ);
250
Dan Stoza9e56aa02015-11-02 13:00:03 -0800251 bool setAlpha(float alpha);
chaviw13fdc492017-06-27 12:40:18 -0700252 bool setColor(const half3& color);
Mathias Agopian13127d82013-03-05 17:47:11 -0800253 bool setTransparentRegionHint(const Region& transparent);
254 bool setFlags(uint8_t flags, uint8_t mask);
Mathias Agopian13127d82013-03-05 17:47:11 -0800255 bool setLayerStack(uint32_t layerStack);
Courtney Goeltzenleuchterbb09b432016-11-30 13:51:28 -0700256 bool setDataSpace(android_dataspace dataSpace);
Courtney Goeltzenleuchter532b2632017-05-05 16:34:38 -0600257 android_dataspace getDataSpace() const;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700258 uint32_t getLayerStack() const;
Robert Carr0d480722017-01-10 16:42:54 -0800259 void deferTransactionUntil(const sp<IBinder>& barrierHandle, uint64_t frameNumber);
260 void deferTransactionUntil(const sp<Layer>& barrierLayer, uint64_t frameNumber);
Robert Carrc3574f72016-03-24 12:19:32 -0700261 bool setOverrideScalingMode(int32_t overrideScalingMode);
Daniel Nicoara2f5f8a52016-12-20 16:11:58 -0500262 void setInfo(uint32_t type, uint32_t appId);
Robert Carr1db73f62016-12-21 12:58:51 -0800263 bool reparentChildren(const sp<IBinder>& layer);
chaviwf1961f72017-09-18 16:41:07 -0700264 bool reparent(const sp<IBinder>& newParentHandle);
Robert Carr9524cb32017-02-13 11:32:32 -0800265 bool detachChildren();
Mathias Agopian13127d82013-03-05 17:47:11 -0800266
Dan Stozaee44edd2015-03-23 15:50:23 -0700267 // If we have received a new buffer this frame, we will pass its surface
268 // damage down to hardware composer. Otherwise, we must send a region with
269 // one empty rect.
David Sodmaneb085e02017-10-05 18:49:04 -0700270 virtual void useSurfaceDamage() = 0;
271 virtual void useEmptyDamage() = 0;
Dan Stozaee44edd2015-03-23 15:50:23 -0700272
Mathias Agopian13127d82013-03-05 17:47:11 -0800273 uint32_t getTransactionFlags(uint32_t flags);
274 uint32_t setTransactionFlags(uint32_t flags);
275
Chia-I Wuab0c3192017-08-01 11:29:00 -0700276 bool belongsToDisplay(uint32_t layerStack, bool isPrimaryDisplay) const {
277 return getLayerStack() == layerStack && (!mPrimaryDisplayOnly || isPrimaryDisplay);
278 }
279
chaviwa76b2712017-09-20 12:02:26 -0700280 void computeGeometry(const RenderArea& renderArea, Mesh& mesh, bool useIdentityTransform) const;
Michael Lentine6c925ed2014-09-26 17:55:01 -0700281 Rect computeBounds(const Region& activeTransparentRegion) const;
Mathias Agopian13127d82013-03-05 17:47:11 -0800282 Rect computeBounds() const;
283
Pablo Ceballos40845df2016-01-25 17:41:15 -0800284 int32_t getSequence() const { return sequence; }
285
Mathias Agopian13127d82013-03-05 17:47:11 -0800286 // -----------------------------------------------------------------------
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700287 // Virtuals
David Sodman0c69cad2017-08-21 12:12:51 -0700288 virtual const char* getTypeId() const = 0;
Mathias Agopian13127d82013-03-05 17:47:11 -0800289
Mathias Agopian13127d82013-03-05 17:47:11 -0800290 /*
291 * isOpaque - true if this surface is opaque
Andy McFadden4125a4f2014-01-29 17:17:11 -0800292 *
293 * This takes into account the buffer format (i.e. whether or not the
294 * pixel format includes an alpha channel) and the "opaque" flag set
295 * on the layer. It does not examine the current plane alpha value.
Mathias Agopian13127d82013-03-05 17:47:11 -0800296 */
David Sodman0c69cad2017-08-21 12:12:51 -0700297 virtual bool isOpaque(const Layer::State& s) const = 0;
Mathias Agopian13127d82013-03-05 17:47:11 -0800298
299 /*
300 * isSecure - true if this surface is secure, that is if it prevents
301 * screenshots or VNC servers.
302 */
David Sodman0c69cad2017-08-21 12:12:51 -0700303 bool isSecure() const;
Mathias Agopian13127d82013-03-05 17:47:11 -0800304
305 /*
306 * isVisible - true if this layer is visible, false otherwise
307 */
David Sodman0c69cad2017-08-21 12:12:51 -0700308 virtual bool isVisible() const = 0;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800309
Mathias Agopian13127d82013-03-05 17:47:11 -0800310 /*
Robert Carr1f0a16a2016-10-24 16:27:39 -0700311 * isHiddenByPolicy - true if this layer has been forced invisible.
312 * just because this is false, doesn't mean isVisible() is true.
313 * For example if this layer has no active buffer, it may not be hidden by
314 * policy, but it still can not be visible.
315 */
David Sodman0c69cad2017-08-21 12:12:51 -0700316 bool isHiddenByPolicy() const;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700317
318 /*
Mathias Agopian13127d82013-03-05 17:47:11 -0800319 * isFixedSize - true if content has a fixed size
320 */
David Sodman0c69cad2017-08-21 12:12:51 -0700321 virtual bool isFixedSize() const = 0;
Jamie Gennis582270d2011-08-17 18:19:00 -0700322
chaviw8b3871a2017-11-01 17:41:01 -0700323 bool isPendingRemoval() const { return mPendingRemoval; }
324
David Sodman41fdfc92017-11-06 16:09:56 -0800325 void writeToProto(LayerProto* layerInfo,
326 LayerVector::StateSet stateSet = LayerVector::StateSet::Drawing);
chaviw1d044282017-09-27 12:19:28 -0700327
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700328protected:
329 /*
330 * onDraw - draws the surface.
331 */
chaviwa76b2712017-09-20 12:02:26 -0700332 virtual void onDraw(const RenderArea& renderArea, const Region& clip,
David Sodman0c69cad2017-08-21 12:12:51 -0700333 bool useIdentityTransform) const = 0;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700334
335public:
David Sodmaneb085e02017-10-05 18:49:04 -0700336 virtual void setDefaultBufferSize(uint32_t w, uint32_t h) = 0;
337
Robert Carrae060832016-11-28 10:51:00 -0800338 void setGeometry(const sp<const DisplayDevice>& displayDevice, uint32_t z);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800339 void forceClientComposition(int32_t hwcId);
chaviwc9232ed2017-11-14 15:31:15 -0800340 bool getForceClientComposition(int32_t hwcId);
David Sodmaneb085e02017-10-05 18:49:04 -0700341 virtual void setPerFrameData(const sp<const DisplayDevice>& displayDevice) = 0;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800342
343 // callIntoHwc exists so we can update our local state and call
344 // acceptDisplayChanges without unnecessarily updating the device's state
David Sodman0c69cad2017-08-21 12:12:51 -0700345 void setCompositionType(int32_t hwcId, HWC2::Composition type, bool callIntoHwc = true);
Dan Stoza9e56aa02015-11-02 13:00:03 -0800346 HWC2::Composition getCompositionType(int32_t hwcId) const;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800347 void setClearClientTarget(int32_t hwcId, bool clear);
348 bool getClearClientTarget(int32_t hwcId) const;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800349 void updateCursorPosition(const sp<const DisplayDevice>& hw);
Riley Andrews03414a12014-07-01 14:22:59 -0700350
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700351 /*
352 * called after page-flip
353 */
David Sodmaneb085e02017-10-05 18:49:04 -0700354 virtual void onLayerDisplayed(const sp<Fence>& releaseFence);
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700355
David Sodmaneb085e02017-10-05 18:49:04 -0700356 virtual void abandon() = 0;
357
358 virtual bool shouldPresentNow(const DispSync& dispSync) const = 0;
359 virtual void setTransformHint(uint32_t orientation) const = 0;
Dan Stoza6b9454d2014-11-07 16:00:59 -0800360
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700361 /*
362 * called before composition.
363 * returns true if the layer has pending updates.
364 */
David Sodman0c69cad2017-08-21 12:12:51 -0700365 virtual bool onPreComposition(nsecs_t refreshStartTime) = 0;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700366
367 /*
Dan Stozae77c7662016-05-13 11:37:28 -0700368 * called after composition.
369 * returns true if the layer latched a new buffer this frame.
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700370 */
David Sodmaneb085e02017-10-05 18:49:04 -0700371 virtual bool onPostComposition(const std::shared_ptr<FenceTime>& glDoneFence,
372 const std::shared_ptr<FenceTime>& presentFence,
373 const CompositorTiming& compositorTiming) = 0;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700374
Dan Stoza9e56aa02015-11-02 13:00:03 -0800375 // If a buffer was replaced this frame, release the former buffer
David Sodman0c69cad2017-08-21 12:12:51 -0700376 virtual void releasePendingBuffer(nsecs_t dequeueReadyTime) = 0;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800377
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700378 /*
379 * draw - performs some global clipping optimizations
380 * and calls onDraw().
381 */
chaviwa76b2712017-09-20 12:02:26 -0700382 void draw(const RenderArea& renderArea, const Region& clip) const;
383 void draw(const RenderArea& renderArea, bool useIdentityTransform) const;
384 void draw(const RenderArea& renderArea) const;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700385
386 /*
387 * doTransaction - process the transaction. This is a good place to figure
388 * out which attributes of the surface have changed.
389 */
390 uint32_t doTransaction(uint32_t transactionFlags);
391
392 /*
393 * setVisibleRegion - called to set the new visible region. This gives
394 * a chance to update the new visible region or record the fact it changed.
395 */
396 void setVisibleRegion(const Region& visibleRegion);
397
398 /*
399 * setCoveredRegion - called when the covered region changes. The covered
400 * region corresponds to any area of the surface that is covered
401 * (transparently or not) by another surface.
402 */
403 void setCoveredRegion(const Region& coveredRegion);
404
405 /*
406 * setVisibleNonTransparentRegion - called when the visible and
407 * non-transparent region changes.
408 */
David Sodman41fdfc92017-11-06 16:09:56 -0800409 void setVisibleNonTransparentRegion(const Region& visibleNonTransparentRegion);
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700410
411 /*
412 * latchBuffer - called each time the screen is redrawn and returns whether
413 * the visible regions need to be recomputed (this is a fairly heavy
414 * operation, so this should be set only if needed). Typically this is used
415 * to figure out if the content or size of a surface has changed.
416 */
David Sodman0c69cad2017-08-21 12:12:51 -0700417 virtual Region latchBuffer(bool& recomputeVisibleRegions, nsecs_t latchTime) = 0;
418 virtual bool isBufferLatched() const = 0;
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700419
David Sodman0c69cad2017-08-21 12:12:51 -0700420 bool isPotentialCursor() const { return mPotentialCursor; }
Mathias Agopian13127d82013-03-05 17:47:11 -0800421 /*
Chia-I Wuc6657022017-08-15 11:18:17 -0700422 * called with the state lock from a binder thread when the layer is
423 * removed from the current list to the pending removal list
424 */
425 void onRemovedFromCurrentState();
426
427 /*
428 * called with the state lock from the main thread when the layer is
429 * removed from the pending removal list
Mathias Agopian13127d82013-03-05 17:47:11 -0800430 */
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700431 void onRemoved();
Mathias Agopian13127d82013-03-05 17:47:11 -0800432
Andy McFaddenbf974ab2012-12-04 16:51:15 -0800433 // Updates the transform hint in our SurfaceFlingerConsumer to match
Mathias Agopian84300952012-11-21 16:02:13 -0800434 // the current orientation of the display device.
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700435 void updateTransformHint(const sp<const DisplayDevice>& hw) const;
Andy McFadden69052052012-09-14 16:10:11 -0700436
Mathias Agopian13127d82013-03-05 17:47:11 -0800437 /*
438 * returns the rectangle that crops the content of the layer and scales it
439 * to the layer's size.
440 */
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700441 Rect getContentCrop() const;
Mathias Agopian13127d82013-03-05 17:47:11 -0800442
Eric Penner51c59cd2014-07-28 19:51:58 -0700443 /*
444 * Returns if a frame is queued.
445 */
David Sodman41fdfc92017-11-06 16:09:56 -0800446 bool hasQueuedFrame() const {
447 return mQueuedFrames > 0 || mSidebandStreamChanged || mAutoRefresh;
448 }
Eric Penner51c59cd2014-07-28 19:51:58 -0700449
Kalle Raitaa099a242017-01-11 11:17:29 -0800450 int32_t getQueuedFrameCount() const { return mQueuedFrames; }
451
Dan Stoza9e56aa02015-11-02 13:00:03 -0800452 // -----------------------------------------------------------------------
453
Steven Thomasb02664d2017-07-26 18:48:28 -0700454 bool createHwcLayer(HWComposer* hwc, int32_t hwcId);
Chia-I Wu83806892017-11-16 10:50:20 -0800455 bool destroyHwcLayer(int32_t hwcId);
Steven Thomasb02664d2017-07-26 18:48:28 -0700456 void destroyAllHwcLayers();
457
David Sodman6f65f3e2017-11-03 14:28:09 -0700458 bool hasHwcLayer(int32_t hwcId) {
459 return getBE().mHwcLayers.count(hwcId) > 0;
460 }
Dan Stoza9e56aa02015-11-02 13:00:03 -0800461
Steven Thomasb02664d2017-07-26 18:48:28 -0700462 HWC2::Layer* getHwcLayer(int32_t hwcId) {
David Sodman6f65f3e2017-11-03 14:28:09 -0700463 if (getBE().mHwcLayers.count(hwcId) == 0) {
Dan Stoza9e56aa02015-11-02 13:00:03 -0800464 return nullptr;
465 }
David Sodman6f65f3e2017-11-03 14:28:09 -0700466 return getBE().mHwcLayers[hwcId].layer;
Dan Stoza9e56aa02015-11-02 13:00:03 -0800467 }
468
Mathias Agopian13127d82013-03-05 17:47:11 -0800469 // -----------------------------------------------------------------------
470
chaviwa76b2712017-09-20 12:02:26 -0700471 void clearWithOpenGL(const RenderArea& renderArea) const;
Mathias Agopian13127d82013-03-05 17:47:11 -0800472 void setFiltering(bool filtering);
473 bool getFiltering() const;
474
Mathias Agopian13127d82013-03-05 17:47:11 -0800475
David Sodman41fdfc92017-11-06 16:09:56 -0800476 inline const State& getDrawingState() const { return mDrawingState; }
477 inline const State& getCurrentState() const { return mCurrentState; }
478 inline State& getCurrentState() { return mCurrentState; }
Mathias Agopian13127d82013-03-05 17:47:11 -0800479
Kalle Raitaa099a242017-01-11 11:17:29 -0800480 LayerDebugInfo getLayerDebugInfo() const;
Mathias Agopian13127d82013-03-05 17:47:11 -0800481
482 /* always call base class first */
Dan Stozae22aec72016-08-01 13:20:59 -0700483 static void miniDumpHeader(String8& result);
484 void miniDump(String8& result, int32_t hwcId) const;
Svetoslavd85084b2014-03-20 10:28:31 -0700485 void dumpFrameStats(String8& result) const;
Brian Andersond6927fb2016-07-23 23:37:30 -0700486 void dumpFrameEvents(String8& result);
Svetoslavd85084b2014-03-20 10:28:31 -0700487 void clearFrameStats();
Jamie Gennis6547ff42013-07-16 20:12:42 -0700488 void logFrameStats();
Svetoslavd85084b2014-03-20 10:28:31 -0700489 void getFrameStats(FrameStats* outStats) const;
Mathias Agopian1b5e1022010-04-20 17:55:49 -0700490
David Sodmaneb085e02017-10-05 18:49:04 -0700491 virtual std::vector<OccupancyTracker::Segment> getOccupancyHistory(bool forceFlush) = 0;
Dan Stozae77c7662016-05-13 11:37:28 -0700492
Brian Anderson5ea5e592016-12-01 16:54:33 -0800493 void onDisconnect();
Brian Anderson3890c392016-07-25 12:48:08 -0700494 void addAndGetFrameTimestamps(const NewFrameEventsEntry* newEntry,
David Sodman41fdfc92017-11-06 16:09:56 -0800495 FrameEventHistoryDelta* outDelta);
Pablo Ceballosce796e72016-02-04 19:10:51 -0800496
David Sodmaneb085e02017-10-05 18:49:04 -0700497 virtual bool getTransformToDisplayInverse() const = 0;
Robert Carr367c5682016-06-20 11:55:28 -0700498
Robert Carr1f0a16a2016-10-24 16:27:39 -0700499 Transform getTransform() const;
500
Robert Carr6452f122017-03-21 10:41:29 -0700501 // Returns the Alpha of the Surface, accounting for the Alpha
502 // of parent Surfaces in the hierarchy (alpha's will be multiplied
503 // down the hierarchy).
chaviw13fdc492017-06-27 12:40:18 -0700504 half getAlpha() const;
505 half4 getColor() const;
Robert Carr6452f122017-03-21 10:41:29 -0700506
Dan Stoza412903f2017-04-27 13:42:17 -0700507 void traverseInReverseZOrder(LayerVector::StateSet stateSet,
508 const LayerVector::Visitor& visitor);
509 void traverseInZOrder(LayerVector::StateSet stateSet, const LayerVector::Visitor& visitor);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700510
chaviwa76b2712017-09-20 12:02:26 -0700511 void traverseChildrenInZOrder(LayerVector::StateSet stateSet,
512 const LayerVector::Visitor& visitor);
513
Chia-I Wu98f1c102017-05-30 14:54:08 -0700514 size_t getChildrenCount() const;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700515 void addChild(const sp<Layer>& layer);
516 // Returns index if removed, or negative value otherwise
517 // for symmetry with Vector::remove
518 ssize_t removeChild(const sp<Layer>& layer);
Chia-I Wue41dbe62017-06-13 14:10:56 -0700519 sp<Layer> getParent() const { return mCurrentParent.promote(); }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700520 bool hasParent() const { return getParent() != nullptr; }
Robert Carr1f0a16a2016-10-24 16:27:39 -0700521 Rect computeScreenBounds(bool reduceTransparentRegion = true) const;
522 bool setChildLayer(const sp<Layer>& childLayer, int32_t z);
Robert Carr503c7042017-09-27 15:06:08 -0700523 bool setChildRelativeLayer(const sp<Layer>& childLayer,
524 const sp<IBinder>& relativeToHandle, int32_t relativeZ);
Robert Carr1f0a16a2016-10-24 16:27:39 -0700525
526 // Copy the current list of children to the drawing state. Called by
527 // SurfaceFlinger to complete a transaction.
528 void commitChildList();
Robert Carr1f0a16a2016-10-24 16:27:39 -0700529 int32_t getZ() const;
David Sodman41fdfc92017-11-06 16:09:56 -0800530
Mathias Agopian13127d82013-03-05 17:47:11 -0800531protected:
532 // constant
533 sp<SurfaceFlinger> mFlinger;
Mathias Agopian13127d82013-03-05 17:47:11 -0800534 /*
535 * Trivial class, used to ensure that mFlinger->onLayerDestroyed(mLayer)
536 * is called.
537 */
538 class LayerCleaner {
539 sp<SurfaceFlinger> mFlinger;
540 wp<Layer> mLayer;
David Sodman41fdfc92017-11-06 16:09:56 -0800541
Mathias Agopian13127d82013-03-05 17:47:11 -0800542 protected:
Irvel468051e2016-06-13 16:44:44 -0700543 ~LayerCleaner() {
544 // destroy client resources
545 mFlinger->onLayerDestroyed(mLayer);
546 }
David Sodman41fdfc92017-11-06 16:09:56 -0800547
Mathias Agopian13127d82013-03-05 17:47:11 -0800548 public:
David Sodman41fdfc92017-11-06 16:09:56 -0800549 LayerCleaner(const sp<SurfaceFlinger>& flinger, const sp<Layer>& layer)
550 : mFlinger(flinger), mLayer(layer) {}
Mathias Agopian13127d82013-03-05 17:47:11 -0800551 };
552
Irvel468051e2016-06-13 16:44:44 -0700553 virtual void onFirstRef();
554
Irvel468051e2016-06-13 16:44:44 -0700555 friend class SurfaceInterceptor;
David Sodmaneb085e02017-10-05 18:49:04 -0700556
Pablo Ceballos05289c22016-04-14 15:49:55 -0700557 void commitTransaction(const State& stateToCommit);
Mathias Agopian1eae0ee2013-06-05 16:59:15 -0700558
Mathias Agopian3330b202009-10-05 17:07:12 -0700559 uint32_t getEffectiveUsage(uint32_t usage) const;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700560
Dan Stoza5a423ea2017-02-16 14:10:39 -0800561 FloatRect computeCrop(const sp<const DisplayDevice>& hw) const;
David Sodman0c69cad2017-08-21 12:12:51 -0700562 // Compute the initial crop as specified by parent layers and the
563 // SurfaceControl for this layer. Does not include buffer crop from the
564 // IGraphicBufferProducer client, as that should not affect child clipping.
565 // Returns in screen space.
Robert Carr1f0a16a2016-10-24 16:27:39 -0700566 Rect computeInitialCrop(const sp<const DisplayDevice>& hw) const;
Mathias Agopian0aa758d2009-04-22 15:23:34 -0700567
Mathias Agopian13127d82013-03-05 17:47:11 -0800568 // drawing
David Sodman41fdfc92017-11-06 16:09:56 -0800569 void clearWithOpenGL(const RenderArea& renderArea, float r, float g, float b,
570 float alpha) const;
Dan Stozac5da2712016-07-20 15:38:12 -0700571
Robert Carr1f0a16a2016-10-24 16:27:39 -0700572 void setParent(const sp<Layer>& layer);
573
Robert Carr29abff82017-12-04 13:51:20 -0800574 LayerVector makeTraversalList(LayerVector::StateSet stateSet, bool* outSkipRelativeZUsers);
Robert Carrdb66e622017-04-10 16:55:57 -0700575 void addZOrderRelative(const wp<Layer>& relative);
576 void removeZOrderRelative(const wp<Layer>& relative);
577
David Sodman41fdfc92017-11-06 16:09:56 -0800578 class SyncPoint {
Dan Stoza7dde5992015-05-22 09:51:44 -0700579 public:
David Sodman41fdfc92017-11-06 16:09:56 -0800580 explicit SyncPoint(uint64_t frameNumber)
581 : mFrameNumber(frameNumber), mFrameIsAvailable(false), mTransactionIsApplied(false) {}
Dan Stoza7dde5992015-05-22 09:51:44 -0700582
David Sodman41fdfc92017-11-06 16:09:56 -0800583 uint64_t getFrameNumber() const { return mFrameNumber; }
Dan Stoza7dde5992015-05-22 09:51:44 -0700584
David Sodman41fdfc92017-11-06 16:09:56 -0800585 bool frameIsAvailable() const { return mFrameIsAvailable; }
Dan Stoza7dde5992015-05-22 09:51:44 -0700586
David Sodman41fdfc92017-11-06 16:09:56 -0800587 void setFrameAvailable() { mFrameIsAvailable = true; }
Dan Stoza7dde5992015-05-22 09:51:44 -0700588
David Sodman41fdfc92017-11-06 16:09:56 -0800589 bool transactionIsApplied() const { return mTransactionIsApplied; }
Dan Stoza7dde5992015-05-22 09:51:44 -0700590
David Sodman41fdfc92017-11-06 16:09:56 -0800591 void setTransactionApplied() { mTransactionIsApplied = true; }
Dan Stoza7dde5992015-05-22 09:51:44 -0700592
593 private:
594 const uint64_t mFrameNumber;
595 std::atomic<bool> mFrameIsAvailable;
596 std::atomic<bool> mTransactionIsApplied;
597 };
598
Dan Stozacac35382016-01-27 12:21:06 -0800599 // SyncPoints which will be signaled when the correct frame is at the head
600 // of the queue and dropped after the frame has been latched. Protected by
601 // mLocalSyncPointMutex.
602 Mutex mLocalSyncPointMutex;
Dan Stoza7dde5992015-05-22 09:51:44 -0700603 std::list<std::shared_ptr<SyncPoint>> mLocalSyncPoints;
604
Dan Stozacac35382016-01-27 12:21:06 -0800605 // SyncPoints which will be signaled and then dropped when the transaction
606 // is applied
Dan Stoza7dde5992015-05-22 09:51:44 -0700607 std::list<std::shared_ptr<SyncPoint>> mRemoteSyncPoints;
608
Dan Stozacac35382016-01-27 12:21:06 -0800609 // Returns false if the relevant frame has already been latched
610 bool addSyncPoint(const std::shared_ptr<SyncPoint>& point);
Dan Stoza7dde5992015-05-22 09:51:44 -0700611
612 void pushPendingState();
Pablo Ceballos05289c22016-04-14 15:49:55 -0700613 void popPendingState(State* stateToCommit);
614 bool applyPendingStates(State* stateToCommit);
Robert Carrc3574f72016-03-24 12:19:32 -0700615
Robert Carr1f0a16a2016-10-24 16:27:39 -0700616 void clearSyncPoints();
617
Robert Carrc3574f72016-03-24 12:19:32 -0700618 // Returns mCurrentScaling mode (originating from the
619 // Client) or mOverrideScalingMode mode (originating from
620 // the Surface Controller) if set.
David Sodman0c69cad2017-08-21 12:12:51 -0700621 virtual uint32_t getEffectiveScalingMode() const = 0;
David Sodman41fdfc92017-11-06 16:09:56 -0800622
Dan Stoza7dde5992015-05-22 09:51:44 -0700623public:
Irvel468051e2016-06-13 16:44:44 -0700624 /*
625 * The layer handle is just a BBinder object passed to the client
626 * (remote process) -- we don't keep any reference on our side such that
627 * the dtor is called when the remote side let go of its reference.
628 *
629 * LayerCleaner ensures that mFlinger->onLayerDestroyed() is called for
630 * this layer when the handle is destroyed.
631 */
632 class Handle : public BBinder, public LayerCleaner {
David Sodman41fdfc92017-11-06 16:09:56 -0800633 public:
634 Handle(const sp<SurfaceFlinger>& flinger, const sp<Layer>& layer)
635 : LayerCleaner(flinger, layer), owner(layer) {}
Irvel468051e2016-06-13 16:44:44 -0700636
David Sodman41fdfc92017-11-06 16:09:56 -0800637 wp<Layer> owner;
Irvel468051e2016-06-13 16:44:44 -0700638 };
639
640 sp<IBinder> getHandle();
Irvel468051e2016-06-13 16:44:44 -0700641 const String8& getName() const;
David Sodman0c69cad2017-08-21 12:12:51 -0700642 virtual void notifyAvailableFrames() = 0;
643 virtual PixelFormat getPixelFormat() const = 0;
chaviw13fdc492017-06-27 12:40:18 -0700644 bool getPremultipledAlpha() const;
Igor Murashkina4a31492012-10-29 13:36:11 -0700645
David Sodman41fdfc92017-11-06 16:09:56 -0800646protected:
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700647 // -----------------------------------------------------------------------
Robert Carr29abff82017-12-04 13:51:20 -0800648 bool usingRelativeZ(LayerVector::StateSet stateSet);
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700649
Mathias Agopian13127d82013-03-05 17:47:11 -0800650 bool mPremultipliedAlpha;
651 String8 mName;
David Sodman41fdfc92017-11-06 16:09:56 -0800652 String8 mTransactionName; // A cached version of "TX - " + mName for systraces
Mathias Agopian13127d82013-03-05 17:47:11 -0800653
Chia-I Wuab0c3192017-08-01 11:29:00 -0700654 bool mPrimaryDisplayOnly = false;
655
Mathias Agopian13127d82013-03-05 17:47:11 -0800656 // these are protected by an external lock
657 State mCurrentState;
658 State mDrawingState;
659 volatile int32_t mTransactionFlags;
Mathias Agopiand606de62010-05-10 20:06:11 -0700660
Dan Stoza7dde5992015-05-22 09:51:44 -0700661 // Accessed from main thread and binder threads
662 Mutex mPendingStateMutex;
663 Vector<State> mPendingStates;
664
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700665 // thread-safe
Mathias Agopiana67932f2011-04-20 14:20:59 -0700666 volatile int32_t mQueuedFrames;
David Sodman41fdfc92017-11-06 16:09:56 -0800667 volatile int32_t mSidebandStreamChanged; // used like an atomic boolean
Brian Andersond6927fb2016-07-23 23:37:30 -0700668
669 // Timestamp history for UIAutomation. Thread safe.
Jamie Gennis4b0eba92013-02-05 13:30:24 -0800670 FrameTracker mFrameTracker;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700671
Brian Andersond6927fb2016-07-23 23:37:30 -0700672 // Timestamp history for the consumer to query.
673 // Accessed by both consumer and producer on main and binder threads.
674 Mutex mFrameEventHistoryMutex;
Brian Anderson3890c392016-07-25 12:48:08 -0700675 ConsumerFrameEventHistory mFrameEventHistory;
Brian Anderson3d4039d2016-09-23 16:31:30 -0700676 FenceTimeline mAcquireTimeline;
677 FenceTimeline mReleaseTimeline;
Brian Andersond6927fb2016-07-23 23:37:30 -0700678
Mathias Agopiana67932f2011-04-20 14:20:59 -0700679 // main thread
Mathias Agopiana9347642017-02-13 16:42:28 -0800680 int mActiveBufferSlot;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700681 sp<GraphicBuffer> mActiveBuffer;
Jesse Hall399184a2014-03-03 15:42:54 -0800682 sp<NativeHandle> mSidebandStream;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700683 Rect mCurrentCrop;
684 uint32_t mCurrentTransform;
Robert Carrc3574f72016-03-24 12:19:32 -0700685 // We encode unset as -1.
686 int32_t mOverrideScalingMode;
Mathias Agopiana67932f2011-04-20 14:20:59 -0700687 bool mCurrentOpacity;
Dan Stozacac35382016-01-27 12:21:06 -0800688 std::atomic<uint64_t> mCurrentFrameNumber;
Jamie Gennise8696a42012-01-15 18:54:57 -0800689 bool mFrameLatencyNeeded;
Mathias Agopian13127d82013-03-05 17:47:11 -0800690 // Whether filtering is forced on or not
691 bool mFiltering;
692 // Whether filtering is needed b/c of the drawingstate
693 bool mNeedsFiltering;
David Sodman0c69cad2017-08-21 12:12:51 -0700694
chaviw8b3871a2017-11-01 17:41:01 -0700695 bool mPendingRemoval = false;
696
Mathias Agopianb7e930d2010-06-01 15:12:58 -0700697 // page-flip thread (currently main thread)
Glenn Kasten16f04532011-01-19 15:27:27 -0800698 bool mProtectedByApp; // application requires protected path to external sink
Mathias Agopian13127d82013-03-05 17:47:11 -0800699
700 // protected by mLock
701 mutable Mutex mLock;
David Sodman0c69cad2017-08-21 12:12:51 -0700702
Mathias Agopian13127d82013-03-05 17:47:11 -0800703 const wp<Client> mClientRef;
Riley Andrews03414a12014-07-01 14:22:59 -0700704
705 // This layer can be a cursor on some displays.
706 bool mPotentialCursor;
Dan Stoza6b9454d2014-11-07 16:00:59 -0800707
708 // Local copy of the queued contents of the incoming BufferQueue
709 mutable Mutex mQueueItemLock;
Dan Stozaa4650a52015-05-12 12:56:16 -0700710 Condition mQueueItemCondition;
Dan Stoza6b9454d2014-11-07 16:00:59 -0800711 Vector<BufferItem> mQueueItems;
Dan Stozacac35382016-01-27 12:21:06 -0800712 std::atomic<uint64_t> mLastFrameNumberReceived;
Pablo Ceballosff95aab2016-01-13 17:09:58 -0800713 bool mAutoRefresh;
Robert Carr7bf247e2017-05-18 14:02:49 -0700714 bool mFreezeGeometryUpdates;
Robert Carr1f0a16a2016-10-24 16:27:39 -0700715
716 // Child list about to be committed/used for editing.
717 LayerVector mCurrentChildren;
718 // Child list used for rendering.
719 LayerVector mDrawingChildren;
720
Chia-I Wue41dbe62017-06-13 14:10:56 -0700721 wp<Layer> mCurrentParent;
722 wp<Layer> mDrawingParent;
David Sodman9eeae692017-11-02 10:53:32 -0700723
724 mutable LayerBE mBE;
The Android Open Source Projectedbf3b62009-03-03 19:31:44 -0800725};
726
727// ---------------------------------------------------------------------------
728
729}; // namespace android
730
731#endif // ANDROID_LAYER_H