diff options
author | Valerie Hau <vhau@google.com> | 2019-10-22 16:13:59 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2019-10-22 16:13:59 +0000 |
commit | d4dac416aec0d11cf8d674b1503a37dc31123541 (patch) | |
tree | 8ac066a270db696eac78430ab1282ba82e4f03d3 /native/android | |
parent | 916f3f6e12a0226c49824fa7342cd6a02b555145 (diff) | |
parent | ec453e14237462b6f6e79077a698fe636fd86acb (diff) |
Merge "Adding transformHint to callbacks"
Diffstat (limited to 'native/android')
-rw-r--r-- | native/android/surface_control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/android/surface_control.cpp b/native/android/surface_control.cpp index 53c01226ca1a..b34b31ac8439 100644 --- a/native/android/surface_control.cpp +++ b/native/android/surface_control.cpp @@ -294,7 +294,7 @@ void ASurfaceTransaction_setOnComplete(ASurfaceTransaction* aSurfaceTransaction, auto& aSurfaceControlStats = aSurfaceTransactionStats.aSurfaceControlStats; - for (const auto& [surfaceControl, acquireTime, previousReleaseFence] : surfaceControlStats) { + for (const auto& [surfaceControl, acquireTime, previousReleaseFence, transformHint] : surfaceControlStats) { ASurfaceControl* aSurfaceControl = reinterpret_cast<ASurfaceControl*>(surfaceControl.get()); aSurfaceControlStats[aSurfaceControl].acquireTime = acquireTime; aSurfaceControlStats[aSurfaceControl].previousReleaseFence = previousReleaseFence; |