Skip to content
Snippets Groups Projects
Commit 8de362e0 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Camera: Fix OutputConfiguration equality check" into main am:...

Merge "Camera: Fix OutputConfiguration equality check" into main am: 04e59b17 am: 523dcae7 am: b5670c0f

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2797213



Change-Id: I1eb6464cece62c0e5d4e4446a77e11eb6b4c7b14
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 2ff4cc3c b5670c0f
No related branches found
No related tags found
No related merge requests found
......@@ -1403,6 +1403,7 @@ public final class OutputConfiguration implements Parcelable {
if (mSurfaces.get(i) != other.mSurfaces.get(i))
return false;
}
if (!mIsDeferredConfig && mSurfaces.size() != other.mSurfaces.size()) return false;
if (mDynamicRangeProfile != other.mDynamicRangeProfile) {
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment