diff options
| author | 2024-04-04 16:37:38 +0000 | |
|---|---|---|
| committer | 2024-04-04 16:37:38 +0000 | |
| commit | af4b7de711300dc2dd2d58cd06b3483f73bb8112 (patch) | |
| tree | 08fd227eb95283229140c946f80e79cb28582c64 | |
| parent | 02d17267e77a4934d665a49e6541084c4d3326a5 (diff) | |
| parent | 21c4dd4de0cef873de3ac627c82a8db67fa20942 (diff) | |
Merge "Adapt to changing function signature." into main
| -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); |