diff options
author | 2012-10-02 16:40:30 -0700 | |
---|---|---|
committer | 2012-10-03 15:05:58 -0700 | |
commit | 3fd12e41afcf323fdb99a4cf6bef0f904d72cc8b (patch) | |
tree | 4454a506c5596366f207953c5071022033953c48 /libs/gui/GuiConfig.cpp | |
parent | 35387922bd3213ea4c376c7dcfb109da67a6a33e (diff) |
libgui: fix up compile options
This change adds debug info to SurfaceFlinger's dumpsys to indicate that the
USE_WAIT_SYNC compile option was enabled, and it removes the
ALLOW_DEQUEUE_CURRENT_BUFFER option.
Bug: 7238122
Change-Id: I70e08e34c2ef58aa6d2f88229e781a119f84b5a9
Diffstat (limited to 'libs/gui/GuiConfig.cpp')
-rw-r--r-- | libs/gui/GuiConfig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/gui/GuiConfig.cpp b/libs/gui/GuiConfig.cpp index 0744e4f56f..bafd21aaed 100644 --- a/libs/gui/GuiConfig.cpp +++ b/libs/gui/GuiConfig.cpp @@ -28,8 +28,8 @@ void appendGuiConfigString(String8& configStr) #ifdef USE_NATIVE_FENCE_SYNC " USE_NATIVE_FENCE_SYNC" #endif -#ifdef ALLOW_DEQUEUE_CURRENT_BUFFER - " ALLOW_DEQUEUE_CURRENT_BUFFER" +#ifdef USE_WAIT_SYNC + " USE_WAIT_SYNC" #endif "]"; configStr.append(config); |