diff options
author | Scott Lobdell <slobdell@google.com> | 2021-07-11 17:19:41 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-07-11 17:19:41 +0000 |
commit | c629fbb3b284560249baa92d100c2f50a54cf8e9 (patch) | |
tree | a31514b97149705ceff56ba74d39427a59e7d264 /libs/hwui/renderthread/RenderThread.cpp | |
parent | ad8ba783f247c782bacb95aa8399bbcd5a3c2def (diff) | |
parent | 8507fe74dccb3114f7942bb3ca2087dab2c890e6 (diff) |
Merge "Merge SP1A.210624.001" into s-keystone-qcom-dev
Diffstat (limited to 'libs/hwui/renderthread/RenderThread.cpp')
-rw-r--r-- | libs/hwui/renderthread/RenderThread.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/hwui/renderthread/RenderThread.cpp b/libs/hwui/renderthread/RenderThread.cpp index 4ba774801bba..524407d2b9b0 100644 --- a/libs/hwui/renderthread/RenderThread.cpp +++ b/libs/hwui/renderthread/RenderThread.cpp @@ -102,6 +102,10 @@ ASurfaceControlFunctions::ASurfaceControlFunctions() { (AST_setVisibility)dlsym(handle_, "ASurfaceTransaction_setVisibility"); LOG_ALWAYS_FATAL_IF(transactionSetVisibilityFunc == nullptr, "Failed to find required symbol ASurfaceTransaction_setVisibility!"); + + transactionSetZOrderFunc = (AST_setZOrder)dlsym(handle_, "ASurfaceTransaction_setZOrder"); + LOG_ALWAYS_FATAL_IF(transactionSetZOrderFunc == nullptr, + "Failed to find required symbol ASurfaceTransaction_setZOrder!"); } void RenderThread::frameCallback(int64_t frameTimeNanos, void* data) { |