Switch default renderer to back to Skia's OpenGL pipeline once more.

Bug: 63910712
Test: CtsGraphicsTestCases, CtsUiRenderingTestCases, CtsViewTestCases
Change-Id: Idb862a0dece6b13dc7a105f6a47e4e33911ecc4a
This commit is contained in:
Derek Sollenberger
2017-07-24 14:21:16 -04:00
parent ac1d112c4b
commit 04f1f01139

View File

@@ -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;