diff options
author | 2024-04-04 16:51:10 +0000 | |
---|---|---|
committer | 2024-04-04 16:51:10 +0000 | |
commit | 98914f7dfb901a05157744dbf9c44bc0090d4bd2 (patch) | |
tree | 08fd227eb95283229140c946f80e79cb28582c64 | |
parent | 9143a18b5f4ea7ee38a349d2b74504a5fe0e2806 (diff) | |
parent | af4b7de711300dc2dd2d58cd06b3483f73bb8112 (diff) |
Merge "Adapt to changing function signature." into main am: af4b7de711
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/3026303
Change-Id: Ie59fa203569b0adc062e35a9530ae5a4ff90e7c0
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r-- | native/android/surface_control.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/android/surface_control.cpp b/native/android/surface_control.cpp index 4b63fbf14d4c..55b5e814ee41 100644 --- a/native/android/surface_control.cpp +++ b/native/android/surface_control.cpp @@ -367,7 +367,7 @@ void ASurfaceTransaction_reparent(ASurfaceTransaction* aSurfaceTransaction, void ASurfaceTransaction_setVisibility(ASurfaceTransaction* aSurfaceTransaction, ASurfaceControl* aSurfaceControl, - int8_t visibility) { + ASurfaceTransactionVisibility visibility) { CHECK_NOT_NULL(aSurfaceTransaction); CHECK_NOT_NULL(aSurfaceControl); @@ -496,7 +496,7 @@ void ASurfaceTransaction_setScale(ASurfaceTransaction* aSurfaceTransaction, void ASurfaceTransaction_setBufferTransparency(ASurfaceTransaction* aSurfaceTransaction, ASurfaceControl* aSurfaceControl, - int8_t transparency) { + ASurfaceTransactionTransparency transparency) { CHECK_NOT_NULL(aSurfaceTransaction); CHECK_NOT_NULL(aSurfaceControl); |