The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 | |
Vishnu Nair | 217d8e6 | 2018-09-12 16:34:49 -0700 | [diff] [blame] | 17 | #define LOG_TAG "LayerState" |
| 18 | |
Garfield Tan | 8a3083e | 2018-12-03 13:21:07 -0800 | [diff] [blame] | 19 | #include <inttypes.h> |
| 20 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 21 | #include <utils/Errors.h> |
Mathias Agopian | c5b2c0b | 2009-05-19 19:08:10 -0700 | [diff] [blame] | 22 | #include <binder/Parcel.h> |
Mathias Agopian | 90ac799 | 2012-02-25 18:48:35 -0800 | [diff] [blame] | 23 | #include <gui/ISurfaceComposerClient.h> |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 24 | #include <gui/IGraphicBufferProducer.h> |
Robert Carr | 4cdc58f | 2017-08-23 14:22:20 -0700 | [diff] [blame] | 25 | #include <gui/LayerState.h> |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 26 | |
| 27 | namespace android { |
| 28 | |
| 29 | status_t layer_state_t::write(Parcel& output) const |
| 30 | { |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 31 | output.writeStrongBinder(surface); |
Garfield Tan | 8a3083e | 2018-12-03 13:21:07 -0800 | [diff] [blame] | 32 | output.writeUint64(what); |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 33 | output.writeFloat(x); |
| 34 | output.writeFloat(y); |
Robert Carr | ae06083 | 2016-11-28 10:51:00 -0800 | [diff] [blame] | 35 | output.writeInt32(z); |
Dan Stoza | d723bd7 | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 36 | output.writeUint32(w); |
| 37 | output.writeUint32(h); |
| 38 | output.writeUint32(layerStack); |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 39 | output.writeFloat(alpha); |
Dan Stoza | d723bd7 | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 40 | output.writeUint32(flags); |
| 41 | output.writeUint32(mask); |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 42 | *reinterpret_cast<layer_state_t::matrix22_t *>( |
| 43 | output.writeInplace(sizeof(layer_state_t::matrix22_t))) = matrix; |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 44 | output.write(crop_legacy); |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 45 | output.writeStrongBinder(barrierHandle_legacy); |
Robert Carr | 1db73f6 | 2016-12-21 12:58:51 -0800 | [diff] [blame] | 46 | output.writeStrongBinder(reparentHandle); |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 47 | output.writeUint64(frameNumber_legacy); |
Robert Carr | c3574f7 | 2016-03-24 12:19:32 -0700 | [diff] [blame] | 48 | output.writeInt32(overrideScalingMode); |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 49 | output.writeStrongBinder(IInterface::asBinder(barrierGbp_legacy)); |
Robert Carr | db66e62 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 50 | output.writeStrongBinder(relativeLayerHandle); |
chaviw | 0617894 | 2017-07-27 10:25:59 -0700 | [diff] [blame] | 51 | output.writeStrongBinder(parentHandleForChild); |
chaviw | 13fdc49 | 2017-06-27 12:40:18 -0700 | [diff] [blame] | 52 | output.writeFloat(color.r); |
| 53 | output.writeFloat(color.g); |
| 54 | output.writeFloat(color.b); |
Robert Carr | 2c358bf | 2018-08-08 15:58:15 -0700 | [diff] [blame] | 55 | #ifndef NO_INPUT |
| 56 | inputInfo.write(output); |
| 57 | #endif |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 58 | output.write(transparentRegion); |
Marissa Wall | 61c5862 | 2018-07-18 10:12:20 -0700 | [diff] [blame] | 59 | output.writeUint32(transform); |
| 60 | output.writeBool(transformToDisplayInverse); |
| 61 | output.write(crop); |
Marissa Wall | 861616d | 2018-10-22 12:52:23 -0700 | [diff] [blame] | 62 | output.write(frame); |
Marissa Wall | 61c5862 | 2018-07-18 10:12:20 -0700 | [diff] [blame] | 63 | if (buffer) { |
| 64 | output.writeBool(true); |
| 65 | output.write(*buffer); |
| 66 | } else { |
| 67 | output.writeBool(false); |
| 68 | } |
| 69 | if (acquireFence) { |
| 70 | output.writeBool(true); |
| 71 | output.write(*acquireFence); |
| 72 | } else { |
| 73 | output.writeBool(false); |
| 74 | } |
| 75 | output.writeUint32(static_cast<uint32_t>(dataspace)); |
| 76 | output.write(hdrMetadata); |
| 77 | output.write(surfaceDamageRegion); |
| 78 | output.writeInt32(api); |
| 79 | if (sidebandStream) { |
| 80 | output.writeBool(true); |
| 81 | output.writeNativeHandle(sidebandStream->handle()); |
| 82 | } else { |
| 83 | output.writeBool(false); |
| 84 | } |
| 85 | |
Peiyong Lin | d378863 | 2018-09-18 16:01:31 -0700 | [diff] [blame] | 86 | memcpy(output.writeInplace(16 * sizeof(float)), |
| 87 | colorTransform.asArray(), 16 * sizeof(float)); |
Lucas Dupin | 1b6531c | 2018-07-05 17:18:21 -0700 | [diff] [blame] | 88 | output.writeFloat(cornerRadius); |
Steven Moreland | 9d4ce9b | 2019-07-17 15:23:38 -0700 | [diff] [blame] | 89 | output.writeStrongBinder(cachedBuffer.token.promote()); |
Marissa Wall | 947d34e | 2019-03-29 14:03:53 -0700 | [diff] [blame] | 90 | output.writeUint64(cachedBuffer.id); |
Evan Rosky | 1f6d6d5 | 2018-12-06 10:47:26 -0800 | [diff] [blame] | 91 | output.writeParcelable(metadata); |
Marissa Wall | ebc2c05 | 2019-01-16 19:16:55 -0800 | [diff] [blame] | 92 | |
Valerie Hau | dd0b757 | 2019-01-29 14:59:27 -0800 | [diff] [blame] | 93 | output.writeFloat(bgColorAlpha); |
| 94 | output.writeUint32(static_cast<uint32_t>(bgColorDataspace)); |
Peiyong Lin | c502cb7 | 2019-03-01 15:00:23 -0800 | [diff] [blame] | 95 | output.writeBool(colorSpaceAgnostic); |
Valerie Hau | ed54efa | 2019-01-11 20:03:14 -0800 | [diff] [blame] | 96 | |
Valerie Hau | 9dab973 | 2019-08-20 09:29:25 -0700 | [diff] [blame^] | 97 | auto err = output.writeVectorSize(listeners); |
| 98 | if (err) { |
| 99 | return err; |
| 100 | } |
| 101 | |
| 102 | for (auto listener : listeners) { |
| 103 | err = output.writeStrongBinder(listener.transactionCompletedListener); |
| 104 | if (err) { |
| 105 | return err; |
| 106 | } |
| 107 | err = output.writeInt64Vector(listener.callbackIds); |
| 108 | if (err) { |
| 109 | return err; |
| 110 | } |
| 111 | } |
| 112 | |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 113 | return NO_ERROR; |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | status_t layer_state_t::read(const Parcel& input) |
| 117 | { |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 118 | surface = input.readStrongBinder(); |
Garfield Tan | 8a3083e | 2018-12-03 13:21:07 -0800 | [diff] [blame] | 119 | what = input.readUint64(); |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 120 | x = input.readFloat(); |
| 121 | y = input.readFloat(); |
Robert Carr | ae06083 | 2016-11-28 10:51:00 -0800 | [diff] [blame] | 122 | z = input.readInt32(); |
Dan Stoza | d723bd7 | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 123 | w = input.readUint32(); |
| 124 | h = input.readUint32(); |
| 125 | layerStack = input.readUint32(); |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 126 | alpha = input.readFloat(); |
Dan Stoza | d723bd7 | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 127 | flags = static_cast<uint8_t>(input.readUint32()); |
| 128 | mask = static_cast<uint8_t>(input.readUint32()); |
Michael Lentine | 8afa1c4 | 2014-10-31 11:10:13 -0700 | [diff] [blame] | 129 | const void* matrix_data = input.readInplace(sizeof(layer_state_t::matrix22_t)); |
| 130 | if (matrix_data) { |
| 131 | matrix = *reinterpret_cast<layer_state_t::matrix22_t const *>(matrix_data); |
| 132 | } else { |
| 133 | return BAD_VALUE; |
| 134 | } |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 135 | input.read(crop_legacy); |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 136 | barrierHandle_legacy = input.readStrongBinder(); |
Robert Carr | 1db73f6 | 2016-12-21 12:58:51 -0800 | [diff] [blame] | 137 | reparentHandle = input.readStrongBinder(); |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 138 | frameNumber_legacy = input.readUint64(); |
Robert Carr | c3574f7 | 2016-03-24 12:19:32 -0700 | [diff] [blame] | 139 | overrideScalingMode = input.readInt32(); |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 140 | barrierGbp_legacy = interface_cast<IGraphicBufferProducer>(input.readStrongBinder()); |
Robert Carr | db66e62 | 2017-04-10 16:55:57 -0700 | [diff] [blame] | 141 | relativeLayerHandle = input.readStrongBinder(); |
chaviw | 0617894 | 2017-07-27 10:25:59 -0700 | [diff] [blame] | 142 | parentHandleForChild = input.readStrongBinder(); |
chaviw | 13fdc49 | 2017-06-27 12:40:18 -0700 | [diff] [blame] | 143 | color.r = input.readFloat(); |
| 144 | color.g = input.readFloat(); |
| 145 | color.b = input.readFloat(); |
Robert Carr | 2c358bf | 2018-08-08 15:58:15 -0700 | [diff] [blame] | 146 | |
| 147 | #ifndef NO_INPUT |
| 148 | inputInfo = InputWindowInfo::read(input); |
| 149 | #endif |
| 150 | |
Mathias Agopian | ac9fa42 | 2013-02-11 16:40:36 -0800 | [diff] [blame] | 151 | input.read(transparentRegion); |
Marissa Wall | 61c5862 | 2018-07-18 10:12:20 -0700 | [diff] [blame] | 152 | transform = input.readUint32(); |
| 153 | transformToDisplayInverse = input.readBool(); |
| 154 | input.read(crop); |
Marissa Wall | 861616d | 2018-10-22 12:52:23 -0700 | [diff] [blame] | 155 | input.read(frame); |
Marissa Wall | 61c5862 | 2018-07-18 10:12:20 -0700 | [diff] [blame] | 156 | buffer = new GraphicBuffer(); |
| 157 | if (input.readBool()) { |
| 158 | input.read(*buffer); |
| 159 | } |
| 160 | acquireFence = new Fence(); |
| 161 | if (input.readBool()) { |
| 162 | input.read(*acquireFence); |
| 163 | } |
| 164 | dataspace = static_cast<ui::Dataspace>(input.readUint32()); |
| 165 | input.read(hdrMetadata); |
| 166 | input.read(surfaceDamageRegion); |
| 167 | api = input.readInt32(); |
| 168 | if (input.readBool()) { |
| 169 | sidebandStream = NativeHandle::create(input.readNativeHandle(), true); |
| 170 | } |
| 171 | |
Peiyong Lin | d378863 | 2018-09-18 16:01:31 -0700 | [diff] [blame] | 172 | colorTransform = mat4(static_cast<const float*>(input.readInplace(16 * sizeof(float)))); |
Lucas Dupin | 1b6531c | 2018-07-05 17:18:21 -0700 | [diff] [blame] | 173 | cornerRadius = input.readFloat(); |
Steven Moreland | 9d4ce9b | 2019-07-17 15:23:38 -0700 | [diff] [blame] | 174 | cachedBuffer.token = input.readStrongBinder(); |
Marissa Wall | 947d34e | 2019-03-29 14:03:53 -0700 | [diff] [blame] | 175 | cachedBuffer.id = input.readUint64(); |
Evan Rosky | 1f6d6d5 | 2018-12-06 10:47:26 -0800 | [diff] [blame] | 176 | input.readParcelable(&metadata); |
Marissa Wall | ebc2c05 | 2019-01-16 19:16:55 -0800 | [diff] [blame] | 177 | |
Valerie Hau | dd0b757 | 2019-01-29 14:59:27 -0800 | [diff] [blame] | 178 | bgColorAlpha = input.readFloat(); |
| 179 | bgColorDataspace = static_cast<ui::Dataspace>(input.readUint32()); |
Peiyong Lin | c502cb7 | 2019-03-01 15:00:23 -0800 | [diff] [blame] | 180 | colorSpaceAgnostic = input.readBool(); |
Valerie Hau | ed54efa | 2019-01-11 20:03:14 -0800 | [diff] [blame] | 181 | |
Valerie Hau | 9dab973 | 2019-08-20 09:29:25 -0700 | [diff] [blame^] | 182 | int32_t numListeners = input.readInt32(); |
| 183 | listeners.clear(); |
| 184 | for (int i = 0; i < numListeners; i++) { |
| 185 | auto listener = input.readStrongBinder(); |
| 186 | std::vector<CallbackId> callbackIds; |
| 187 | input.readInt64Vector(&callbackIds); |
| 188 | listeners.emplace_back(listener, callbackIds); |
| 189 | } |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 190 | return NO_ERROR; |
| 191 | } |
| 192 | |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 193 | status_t ComposerState::write(Parcel& output) const { |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 194 | return state.write(output); |
| 195 | } |
| 196 | |
| 197 | status_t ComposerState::read(const Parcel& input) { |
Mathias Agopian | 698c087 | 2011-06-28 19:09:31 -0700 | [diff] [blame] | 198 | return state.read(input); |
| 199 | } |
| 200 | |
Mathias Agopian | 8b33f03 | 2012-07-24 20:43:54 -0700 | [diff] [blame] | 201 | |
Pablo Ceballos | 60d6922 | 2015-08-07 14:47:20 -0700 | [diff] [blame] | 202 | DisplayState::DisplayState() : |
| 203 | what(0), |
| 204 | layerStack(0), |
| 205 | orientation(eOrientationDefault), |
| 206 | viewport(Rect::EMPTY_RECT), |
| 207 | frame(Rect::EMPTY_RECT), |
| 208 | width(0), |
| 209 | height(0) { |
| 210 | } |
| 211 | |
Mathias Agopian | 8b33f03 | 2012-07-24 20:43:54 -0700 | [diff] [blame] | 212 | status_t DisplayState::write(Parcel& output) const { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 213 | output.writeStrongBinder(token); |
Marco Nelissen | 2ea926b | 2014-11-14 08:01:01 -0800 | [diff] [blame] | 214 | output.writeStrongBinder(IInterface::asBinder(surface)); |
Dan Stoza | d723bd7 | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 215 | output.writeUint32(what); |
| 216 | output.writeUint32(layerStack); |
| 217 | output.writeUint32(orientation); |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 218 | output.write(viewport); |
| 219 | output.write(frame); |
Dan Stoza | d723bd7 | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 220 | output.writeUint32(width); |
| 221 | output.writeUint32(height); |
Mathias Agopian | 8b33f03 | 2012-07-24 20:43:54 -0700 | [diff] [blame] | 222 | return NO_ERROR; |
| 223 | } |
| 224 | |
| 225 | status_t DisplayState::read(const Parcel& input) { |
Mathias Agopian | e57f292 | 2012-08-09 16:29:12 -0700 | [diff] [blame] | 226 | token = input.readStrongBinder(); |
Andy McFadden | 2adaf04 | 2012-12-18 09:49:45 -0800 | [diff] [blame] | 227 | surface = interface_cast<IGraphicBufferProducer>(input.readStrongBinder()); |
Dan Stoza | d723bd7 | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 228 | what = input.readUint32(); |
| 229 | layerStack = input.readUint32(); |
| 230 | orientation = input.readUint32(); |
Mathias Agopian | 8683fca | 2012-08-12 19:37:16 -0700 | [diff] [blame] | 231 | input.read(viewport); |
| 232 | input.read(frame); |
Dan Stoza | d723bd7 | 2014-11-18 10:24:03 -0800 | [diff] [blame] | 233 | width = input.readUint32(); |
| 234 | height = input.readUint32(); |
Mathias Agopian | 8b33f03 | 2012-07-24 20:43:54 -0700 | [diff] [blame] | 235 | return NO_ERROR; |
| 236 | } |
| 237 | |
Robert Carr | 2c5f6d2 | 2017-09-26 12:30:35 -0700 | [diff] [blame] | 238 | void DisplayState::merge(const DisplayState& other) { |
| 239 | if (other.what & eSurfaceChanged) { |
| 240 | what |= eSurfaceChanged; |
| 241 | surface = other.surface; |
| 242 | } |
| 243 | if (other.what & eLayerStackChanged) { |
| 244 | what |= eLayerStackChanged; |
| 245 | layerStack = other.layerStack; |
| 246 | } |
| 247 | if (other.what & eDisplayProjectionChanged) { |
| 248 | what |= eDisplayProjectionChanged; |
| 249 | orientation = other.orientation; |
| 250 | viewport = other.viewport; |
| 251 | frame = other.frame; |
| 252 | } |
| 253 | if (other.what & eDisplaySizeChanged) { |
| 254 | what |= eDisplaySizeChanged; |
| 255 | width = other.width; |
| 256 | height = other.height; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | void layer_state_t::merge(const layer_state_t& other) { |
| 261 | if (other.what & ePositionChanged) { |
| 262 | what |= ePositionChanged; |
| 263 | x = other.x; |
| 264 | y = other.y; |
| 265 | } |
| 266 | if (other.what & eLayerChanged) { |
| 267 | what |= eLayerChanged; |
chaviw | 3237758 | 2019-05-13 11:15:19 -0700 | [diff] [blame] | 268 | what &= ~eRelativeLayerChanged; |
Robert Carr | 2c5f6d2 | 2017-09-26 12:30:35 -0700 | [diff] [blame] | 269 | z = other.z; |
| 270 | } |
| 271 | if (other.what & eSizeChanged) { |
| 272 | what |= eSizeChanged; |
| 273 | w = other.w; |
| 274 | h = other.h; |
| 275 | } |
| 276 | if (other.what & eAlphaChanged) { |
| 277 | what |= eAlphaChanged; |
| 278 | alpha = other.alpha; |
| 279 | } |
| 280 | if (other.what & eMatrixChanged) { |
| 281 | what |= eMatrixChanged; |
| 282 | matrix = other.matrix; |
| 283 | } |
| 284 | if (other.what & eTransparentRegionChanged) { |
| 285 | what |= eTransparentRegionChanged; |
| 286 | transparentRegion = other.transparentRegion; |
| 287 | } |
| 288 | if (other.what & eFlagsChanged) { |
| 289 | what |= eFlagsChanged; |
Vishnu Nair | 996bc42 | 2019-07-16 14:15:33 -0700 | [diff] [blame] | 290 | flags &= ~other.mask; |
| 291 | flags |= (other.flags & other.mask); |
| 292 | mask |= other.mask; |
Robert Carr | 2c5f6d2 | 2017-09-26 12:30:35 -0700 | [diff] [blame] | 293 | } |
| 294 | if (other.what & eLayerStackChanged) { |
| 295 | what |= eLayerStackChanged; |
| 296 | layerStack = other.layerStack; |
| 297 | } |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 298 | if (other.what & eCropChanged_legacy) { |
| 299 | what |= eCropChanged_legacy; |
| 300 | crop_legacy = other.crop_legacy; |
Robert Carr | 2c5f6d2 | 2017-09-26 12:30:35 -0700 | [diff] [blame] | 301 | } |
Lucas Dupin | 1b6531c | 2018-07-05 17:18:21 -0700 | [diff] [blame] | 302 | if (other.what & eCornerRadiusChanged) { |
| 303 | what |= eCornerRadiusChanged; |
| 304 | cornerRadius = other.cornerRadius; |
| 305 | } |
Marissa Wall | f58c14b | 2018-07-24 10:50:43 -0700 | [diff] [blame] | 306 | if (other.what & eDeferTransaction_legacy) { |
| 307 | what |= eDeferTransaction_legacy; |
| 308 | barrierHandle_legacy = other.barrierHandle_legacy; |
| 309 | barrierGbp_legacy = other.barrierGbp_legacy; |
| 310 | frameNumber_legacy = other.frameNumber_legacy; |
Robert Carr | 2c5f6d2 | 2017-09-26 12:30:35 -0700 | [diff] [blame] | 311 | } |
Robert Carr | 2c5f6d2 | 2017-09-26 12:30:35 -0700 | [diff] [blame] | 312 | if (other.what & eOverrideScalingModeChanged) { |
| 313 | what |= eOverrideScalingModeChanged; |
| 314 | overrideScalingMode = other.overrideScalingMode; |
| 315 | } |
Robert Carr | 2c5f6d2 | 2017-09-26 12:30:35 -0700 | [diff] [blame] | 316 | if (other.what & eReparentChildren) { |
| 317 | what |= eReparentChildren; |
| 318 | reparentHandle = other.reparentHandle; |
| 319 | } |
| 320 | if (other.what & eDetachChildren) { |
| 321 | what |= eDetachChildren; |
| 322 | } |
| 323 | if (other.what & eRelativeLayerChanged) { |
| 324 | what |= eRelativeLayerChanged; |
chaviw | 3237758 | 2019-05-13 11:15:19 -0700 | [diff] [blame] | 325 | what &= ~eLayerChanged; |
Robert Carr | 2c5f6d2 | 2017-09-26 12:30:35 -0700 | [diff] [blame] | 326 | z = other.z; |
| 327 | relativeLayerHandle = other.relativeLayerHandle; |
| 328 | } |
| 329 | if (other.what & eReparent) { |
| 330 | what |= eReparent; |
| 331 | parentHandleForChild = other.parentHandleForChild; |
| 332 | } |
chaviw | ca27f25 | 2018-02-06 16:46:39 -0800 | [diff] [blame] | 333 | if (other.what & eDestroySurface) { |
| 334 | what |= eDestroySurface; |
| 335 | } |
Marissa Wall | 61c5862 | 2018-07-18 10:12:20 -0700 | [diff] [blame] | 336 | if (other.what & eTransformChanged) { |
| 337 | what |= eTransformChanged; |
| 338 | transform = other.transform; |
| 339 | } |
| 340 | if (other.what & eTransformToDisplayInverseChanged) { |
| 341 | what |= eTransformToDisplayInverseChanged; |
| 342 | transformToDisplayInverse = other.transformToDisplayInverse; |
| 343 | } |
| 344 | if (other.what & eCropChanged) { |
| 345 | what |= eCropChanged; |
| 346 | crop = other.crop; |
| 347 | } |
Marissa Wall | 861616d | 2018-10-22 12:52:23 -0700 | [diff] [blame] | 348 | if (other.what & eFrameChanged) { |
| 349 | what |= eFrameChanged; |
| 350 | frame = other.frame; |
| 351 | } |
Marissa Wall | 61c5862 | 2018-07-18 10:12:20 -0700 | [diff] [blame] | 352 | if (other.what & eBufferChanged) { |
| 353 | what |= eBufferChanged; |
| 354 | buffer = other.buffer; |
| 355 | } |
| 356 | if (other.what & eAcquireFenceChanged) { |
| 357 | what |= eAcquireFenceChanged; |
| 358 | acquireFence = other.acquireFence; |
| 359 | } |
| 360 | if (other.what & eDataspaceChanged) { |
| 361 | what |= eDataspaceChanged; |
| 362 | dataspace = other.dataspace; |
| 363 | } |
| 364 | if (other.what & eHdrMetadataChanged) { |
| 365 | what |= eHdrMetadataChanged; |
| 366 | hdrMetadata = other.hdrMetadata; |
| 367 | } |
| 368 | if (other.what & eSurfaceDamageRegionChanged) { |
| 369 | what |= eSurfaceDamageRegionChanged; |
| 370 | surfaceDamageRegion = other.surfaceDamageRegion; |
| 371 | } |
| 372 | if (other.what & eApiChanged) { |
| 373 | what |= eApiChanged; |
| 374 | api = other.api; |
| 375 | } |
| 376 | if (other.what & eSidebandStreamChanged) { |
| 377 | what |= eSidebandStreamChanged; |
| 378 | sidebandStream = other.sidebandStream; |
| 379 | } |
Peiyong Lin | d378863 | 2018-09-18 16:01:31 -0700 | [diff] [blame] | 380 | if (other.what & eColorTransformChanged) { |
| 381 | what |= eColorTransformChanged; |
| 382 | colorTransform = other.colorTransform; |
| 383 | } |
Marissa Wall | 3dad52d | 2019-03-22 14:03:19 -0700 | [diff] [blame] | 384 | if (other.what & eHasListenerCallbacksChanged) { |
| 385 | what |= eHasListenerCallbacksChanged; |
Marissa Wall | c837b5e | 2018-10-12 10:04:44 -0700 | [diff] [blame] | 386 | } |
Robert Carr | d314f16 | 2018-08-15 13:12:42 -0700 | [diff] [blame] | 387 | |
Robert Carr | 2c358bf | 2018-08-08 15:58:15 -0700 | [diff] [blame] | 388 | #ifndef NO_INPUT |
| 389 | if (other.what & eInputInfoChanged) { |
| 390 | what |= eInputInfoChanged; |
| 391 | inputInfo = other.inputInfo; |
| 392 | } |
| 393 | #endif |
| 394 | |
Marissa Wall | ebc2c05 | 2019-01-16 19:16:55 -0800 | [diff] [blame] | 395 | if (other.what & eCachedBufferChanged) { |
| 396 | what |= eCachedBufferChanged; |
| 397 | cachedBuffer = other.cachedBuffer; |
| 398 | } |
Valerie Hau | dd0b757 | 2019-01-29 14:59:27 -0800 | [diff] [blame] | 399 | if (other.what & eBackgroundColorChanged) { |
| 400 | what |= eBackgroundColorChanged; |
| 401 | color = other.color; |
| 402 | bgColorAlpha = other.bgColorAlpha; |
| 403 | bgColorDataspace = other.bgColorDataspace; |
Valerie Hau | ed54efa | 2019-01-11 20:03:14 -0800 | [diff] [blame] | 404 | } |
Evan Rosky | 1f6d6d5 | 2018-12-06 10:47:26 -0800 | [diff] [blame] | 405 | if (other.what & eMetadataChanged) { |
| 406 | what |= eMetadataChanged; |
| 407 | metadata.merge(other.metadata); |
| 408 | } |
Vishnu Nair | 217d8e6 | 2018-09-12 16:34:49 -0700 | [diff] [blame] | 409 | if ((other.what & what) != other.what) { |
| 410 | ALOGE("Unmerged SurfaceComposer Transaction properties. LayerState::merge needs updating? " |
Garfield Tan | 8a3083e | 2018-12-03 13:21:07 -0800 | [diff] [blame] | 411 | "other.what=0x%" PRIu64 " what=0x%" PRIu64, |
Vishnu Nair | 217d8e6 | 2018-09-12 16:34:49 -0700 | [diff] [blame] | 412 | other.what, what); |
Robert Carr | d314f16 | 2018-08-15 13:12:42 -0700 | [diff] [blame] | 413 | } |
Robert Carr | 2c5f6d2 | 2017-09-26 12:30:35 -0700 | [diff] [blame] | 414 | } |
Mathias Agopian | 8b33f03 | 2012-07-24 20:43:54 -0700 | [diff] [blame] | 415 | |
chaviw | 273171b | 2018-12-26 11:46:30 -0800 | [diff] [blame] | 416 | // ------------------------------- InputWindowCommands ---------------------------------------- |
| 417 | |
| 418 | void InputWindowCommands::merge(const InputWindowCommands& other) { |
| 419 | transferTouchFocusCommands |
| 420 | .insert(transferTouchFocusCommands.end(), |
| 421 | std::make_move_iterator(other.transferTouchFocusCommands.begin()), |
| 422 | std::make_move_iterator(other.transferTouchFocusCommands.end())); |
chaviw | a911b10 | 2019-02-14 10:18:33 -0800 | [diff] [blame] | 423 | |
| 424 | syncInputWindows |= other.syncInputWindows; |
chaviw | 273171b | 2018-12-26 11:46:30 -0800 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | void InputWindowCommands::clear() { |
| 428 | transferTouchFocusCommands.clear(); |
chaviw | a911b10 | 2019-02-14 10:18:33 -0800 | [diff] [blame] | 429 | syncInputWindows = false; |
chaviw | 273171b | 2018-12-26 11:46:30 -0800 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | void InputWindowCommands::write(Parcel& output) const { |
| 433 | output.writeUint32(static_cast<uint32_t>(transferTouchFocusCommands.size())); |
| 434 | for (const auto& transferTouchFocusCommand : transferTouchFocusCommands) { |
| 435 | output.writeStrongBinder(transferTouchFocusCommand.fromToken); |
| 436 | output.writeStrongBinder(transferTouchFocusCommand.toToken); |
| 437 | } |
chaviw | a911b10 | 2019-02-14 10:18:33 -0800 | [diff] [blame] | 438 | |
| 439 | output.writeBool(syncInputWindows); |
chaviw | 273171b | 2018-12-26 11:46:30 -0800 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | void InputWindowCommands::read(const Parcel& input) { |
| 443 | size_t count = input.readUint32(); |
| 444 | transferTouchFocusCommands.clear(); |
| 445 | for (size_t i = 0; i < count; i++) { |
| 446 | TransferTouchFocusCommand transferTouchFocusCommand; |
| 447 | transferTouchFocusCommand.fromToken = input.readStrongBinder(); |
| 448 | transferTouchFocusCommand.toToken = input.readStrongBinder(); |
| 449 | transferTouchFocusCommands.emplace_back(transferTouchFocusCommand); |
| 450 | } |
chaviw | a911b10 | 2019-02-14 10:18:33 -0800 | [diff] [blame] | 451 | |
| 452 | syncInputWindows = input.readBool(); |
chaviw | 273171b | 2018-12-26 11:46:30 -0800 | [diff] [blame] | 453 | } |
| 454 | |
The Android Open Source Project | edbf3b6 | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 455 | }; // namespace android |