diff options
| author | 2017-07-24 14:21:16 -0400 | |
|---|---|---|
| committer | 2017-09-05 13:12:19 +0000 | |
| commit | 04f1f011397e10ded08ac14b7e62c85e6a521f27 (patch) | |
| tree | 794bc969c57ec250197523df637a5c4476fac1b9 | |
| parent | ac1d112c4bef3fef85b4de3ce0d2bc2d3006f4b5 (diff) | |
Switch default renderer to back to Skia's OpenGL pipeline once more.
Bug: 63910712
Test: CtsGraphicsTestCases, CtsUiRenderingTestCases, CtsViewTestCases
Change-Id: Idb862a0dece6b13dc7a105f6a47e4e33911ecc4a
| -rw-r--r-- | libs/hwui/Properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Properties.cpp b/libs/hwui/Properties.cpp index fe291d2a4bfe..3b59bb1a8f02 100644 --- a/libs/hwui/Properties.cpp +++ b/libs/hwui/Properties.cpp @@ -177,7 +177,7 @@ RenderPipelineType Properties::getRenderPipelineType() { return sRenderPipelineType; } char prop[PROPERTY_VALUE_MAX]; - property_get(PROPERTY_RENDERER, prop, "opengl"); + property_get(PROPERTY_RENDERER, prop, "skiagl"); if (!strcmp(prop, "skiagl") ) { ALOGD("Skia GL Pipeline"); sRenderPipelineType = RenderPipelineType::SkiaGL; |