From 4bc27b6e64dcfa43a17f4309b94e2dddc93e8525 Mon Sep 17 00:00:00 2001 From: Derek Sollenberger Date: Mon, 24 Jul 2017 14:21:16 -0400 Subject: Switch default renderer to Skia's OpenGL pipeline. This is the second attempt now that we have addressed many of the correctness and performance concerns. Bug: 63910712 Change-Id: I3df4ba52c2bc59930f577ffc8d889cb23a16a439 Test: CtsGraphicsTestCases, CtsUiRenderingTestCases, CtsViewTestCases --- libs/hwui/Properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/hwui/Properties.cpp b/libs/hwui/Properties.cpp index acc75393ebcf..4c84ad2b80a8 100644 --- a/libs/hwui/Properties.cpp +++ b/libs/hwui/Properties.cpp @@ -176,7 +176,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; -- cgit v1.2.3-59-g8ed1b