diff options
author | Derek Sollenberger <djsollen@google.com> | 2020-02-21 13:07:28 -0500 |
---|---|---|
committer | Derek Sollenberger <djsollen@google.com> | 2020-04-09 14:26:16 -0400 |
commit | 3fedf5a7e28eec600a4223fb7a596d1f570abdb7 (patch) | |
tree | 2306ba95e96b294b5cb65d7f32f47aa1e9262dab /libs/hwui/renderthread/CanvasContext.h | |
parent | 2c5d63439e653c2981841ca819957fbd8a414d54 (diff) |
Remove unecessary exported symbols from libhwui.so
Test: compiles and links
Bug: 150782769
Change-Id: Ib49c1bf914b6bfaad1fb29371115df7c9eec08d2
Diffstat (limited to 'libs/hwui/renderthread/CanvasContext.h')
-rw-r--r-- | libs/hwui/renderthread/CanvasContext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/renderthread/CanvasContext.h b/libs/hwui/renderthread/CanvasContext.h index 0f1b8aebf56c..0306eeccc5d4 100644 --- a/libs/hwui/renderthread/CanvasContext.h +++ b/libs/hwui/renderthread/CanvasContext.h @@ -170,9 +170,9 @@ public: } // Used to queue up work that needs to be completed before this frame completes - ANDROID_API void enqueueFrameWork(std::function<void()>&& func); + void enqueueFrameWork(std::function<void()>&& func); - ANDROID_API int64_t getFrameNumber(); + int64_t getFrameNumber(); void waitOnFences(); |