blob: a3c6339024f3c5f1e7fe5d5c73f74e80b2c28ba3 [file] [log] [blame]
Lloyd Pique0b785d82018-12-04 17:25:27 -08001/*
2 * Copyright 2019 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#pragma once
18
19#include <cstdint>
20
Lloyd Pique0b785d82018-12-04 17:25:27 -080021#include <gui/HdrMetadata.h>
22#include <math/mat4.h>
23#include <ui/FloatRect.h>
Lloyd Pique0b785d82018-12-04 17:25:27 -080024#include <ui/Rect.h>
25#include <ui/Region.h>
26#include <ui/Transform.h>
27
Lloyd Pique3b5a69e2020-01-16 17:51:01 -080028// TODO(b/129481165): remove the #pragma below and fix conversion issues
29#pragma clang diagnostic push
30#pragma clang diagnostic ignored "-Wconversion"
31
32#include <gui/BufferQueue.h>
33#include <ui/GraphicBuffer.h>
34#include <ui/GraphicTypes.h>
35
Lloyd Pique0b785d82018-12-04 17:25:27 -080036#include "DisplayHardware/ComposerHal.h"
37
Lloyd Pique3b5a69e2020-01-16 17:51:01 -080038// TODO(b/129481165): remove the #pragma below and fix conversion issues
39#pragma clang diagnostic pop // ignored "-Wconversion"
40
Lloyd Pique0b785d82018-12-04 17:25:27 -080041namespace android::compositionengine {
42
43/*
44 * Used by LayerFE::getCompositionState
45 */
46struct LayerFECompositionState {
Lloyd Piquef5275482019-01-29 18:42:42 -080047 // If set to true, forces client composition on all output layers until
48 // the next geometry change.
49 bool forceClientComposition{false};
Lloyd Pique07e33212018-12-18 16:33:37 -080050
Lloyd Piquec6687342019-03-07 21:34:57 -080051 // TODO(b/121291683): Reorganize and rename the contents of this structure
52
53 /*
54 * Visibility state
55 */
56 // the layer stack this layer belongs to
57 std::optional<uint32_t> layerStackId;
58
59 // If true, this layer should be only visible on the internal display
60 bool internalOnly{false};
61
62 // If false, this layer should not be considered visible
63 bool isVisible{true};
64
65 // True if the layer is completely opaque
66 bool isOpaque{true};
67
68 // If true, invalidates the entire visible region
69 bool contentDirty{false};
70
71 // The alpha value for this layer
72 float alpha{1.f};
73
74 // The transform from layer local coordinates to composition coordinates
75 ui::Transform geomLayerTransform;
76
77 // The inverse of the layer transform
78 ui::Transform geomInverseLayerTransform;
79
80 // The hint from the layer producer as to what portion of the layer is
81 // transparent.
82 Region transparentRegionHint;
83
84 // The blend mode for this layer
85 Hwc2::IComposerClient::BlendMode blendMode{Hwc2::IComposerClient::BlendMode::INVALID};
86
87 // The bounds of the layer in layer local coordinates
88 FloatRect geomLayerBounds;
89
Vishnu Naira483b4a2019-12-12 15:07:52 -080090 // length of the shadow in screen space
91 float shadowRadius;
92
Lloyd Pique0b785d82018-12-04 17:25:27 -080093 /*
Lloyd Piquea83776c2019-01-29 18:42:32 -080094 * Geometry state
95 */
96
97 bool isSecure{false};
98 bool geomUsesSourceCrop{false};
99 bool geomBufferUsesDisplayInverseTransform{false};
100 uint32_t geomBufferTransform{0};
Lloyd Piquea83776c2019-01-29 18:42:32 -0800101 Rect geomBufferSize;
102 Rect geomContentCrop;
103 Rect geomCrop;
Lloyd Pique0b785d82018-12-04 17:25:27 -0800104
105 /*
106 * Extra metadata
107 */
108
109 // The type for this layer
110 int type{0};
111
112 // The appId for this layer
113 int appId{0};
114
115 /*
116 * Per-frame content
117 */
118
119 // The type of composition for this layer
120 Hwc2::IComposerClient::Composition compositionType{Hwc2::IComposerClient::Composition::INVALID};
121
122 // The buffer and related state
123 sp<GraphicBuffer> buffer;
124 int bufferSlot{BufferQueue::INVALID_BUFFER_SLOT};
125 sp<Fence> acquireFence;
126 Region surfaceDamage;
127
128 // The handle to use for a sideband stream for this layer
129 sp<NativeHandle> sidebandStream;
130
131 // The color for this layer
Lloyd Piquef5275482019-01-29 18:42:42 -0800132 half4 color;
Lloyd Pique0b785d82018-12-04 17:25:27 -0800133
134 /*
135 * Per-frame presentation state
136 */
137
Lloyd Piquef5275482019-01-29 18:42:42 -0800138 // If true, this layer will use the dataspace chosen for the output and
139 // ignore the dataspace value just below
140 bool isColorspaceAgnostic{false};
141
Lloyd Pique0b785d82018-12-04 17:25:27 -0800142 // The dataspace for this layer
143 ui::Dataspace dataspace{ui::Dataspace::UNKNOWN};
144
145 // The metadata for this layer
146 HdrMetadata hdrMetadata;
147
148 // The color transform
149 mat4 colorTransform;
Lloyd Piquef5275482019-01-29 18:42:42 -0800150 bool colorTransformIsIdentity{true};
Lloyd Pique688abd42019-02-15 15:42:24 -0800151
Lloyd Pique688abd42019-02-15 15:42:24 -0800152 // True if the layer has protected content
153 bool hasProtectedContent{false};
Lloyd Piquec7b0c752019-03-07 20:59:59 -0800154
155 /*
156 * Cursor state
157 */
158
159 // The output-independent frame for the cursor
160 Rect cursorFrame;
Lloyd Pique9755fb72019-03-26 14:44:40 -0700161
162 // Debugging
163 void dump(std::string& out) const;
Lloyd Pique0b785d82018-12-04 17:25:27 -0800164};
165
166} // namespace android::compositionengine