summaryrefslogtreecommitdiff
path: root/services/surfaceflinger/SurfaceFlinger.cpp
diff options
context:
space:
mode:
author Carlos Martinez Romero <carlosmr@google.com> 2022-11-14 20:01:20 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2022-11-14 20:01:20 +0000
commitb6ac858d161fe2f7b88b895c58228f378ff8e10e (patch)
tree27517fbfce5b112ac6fd89a00a00e6dd1625c93c /services/surfaceflinger/SurfaceFlinger.cpp
parentc5269bfbf032e618cb3cf0d510a378f679f95d2b (diff)
parent09f251b449e35af00ab0f703e004561f33aac1c3 (diff)
Merge "Updated the default value of debug.sf.enable_gl_backpressure to 1."
Diffstat (limited to 'services/surfaceflinger/SurfaceFlinger.cpp')
-rw-r--r--services/surfaceflinger/SurfaceFlinger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp
index f7ced0e72b..13bfd6235a 100644
--- a/services/surfaceflinger/SurfaceFlinger.cpp
+++ b/services/surfaceflinger/SurfaceFlinger.cpp
@@ -374,7 +374,7 @@ SurfaceFlinger::SurfaceFlinger(Factory& factory) : SurfaceFlinger(factory, SkipI
int debugDdms = atoi(value);
ALOGI_IF(debugDdms, "DDMS debugging not supported");
- property_get("debug.sf.enable_gl_backpressure", value, "0");
+ property_get("debug.sf.enable_gl_backpressure", value, "1");
mPropagateBackpressureClientComposition = atoi(value);
ALOGI_IF(mPropagateBackpressureClientComposition,
"Enabling backpressure propagation for Client Composition");