diff options
author | 2020-02-21 13:07:28 -0500 | |
---|---|---|
committer | 2020-04-09 14:26:16 -0400 | |
commit | 3fedf5a7e28eec600a4223fb7a596d1f570abdb7 (patch) | |
tree | 2306ba95e96b294b5cb65d7f32f47aa1e9262dab /libs/hwui/Properties.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/Properties.h')
-rw-r--r-- | libs/hwui/Properties.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libs/hwui/Properties.h b/libs/hwui/Properties.h index d3ecb54d94f6..c8f6b3b7ff99 100644 --- a/libs/hwui/Properties.h +++ b/libs/hwui/Properties.h @@ -213,10 +213,10 @@ public: static int overrideSpotShadowStrength; static ProfileType getProfileType(); - ANDROID_API static RenderPipelineType peekRenderPipelineType(); - ANDROID_API static RenderPipelineType getRenderPipelineType(); + static RenderPipelineType peekRenderPipelineType(); + static RenderPipelineType getRenderPipelineType(); - ANDROID_API static bool enableHighContrastText; + static bool enableHighContrastText; // Should be used only by test apps static bool waitForGpuCompletion; @@ -235,17 +235,17 @@ public: static bool skpCaptureEnabled; // For experimentation b/68769804 - ANDROID_API static bool enableRTAnimations; + static bool enableRTAnimations; // Used for testing only to change the render pipeline. static void overrideRenderPipelineType(RenderPipelineType); static bool runningInEmulator; - ANDROID_API static bool debuggingEnabled; - ANDROID_API static bool isolatedProcess; + static bool debuggingEnabled; + static bool isolatedProcess; - ANDROID_API static int contextPriority; + static int contextPriority; static int defaultRenderAhead; |