From f05fa984af2eaa22c5b8b841fa963f1d36346b3e Mon Sep 17 00:00:00 2001 From: Wolfgang Wiedmeyer Date: Wed, 22 Jun 2016 18:30:28 +0200 Subject: [PATCH] load Android SW renderer only if libagl property is set allows to use the sofwaregl property separately for llvmpipe Signed-off-by: Wolfgang Wiedmeyer --- opengl/libs/EGL/Loader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opengl/libs/EGL/Loader.cpp b/opengl/libs/EGL/Loader.cpp index 66b4c818d..19cc1a747 100644 --- a/opengl/libs/EGL/Loader.cpp +++ b/opengl/libs/EGL/Loader.cpp @@ -87,7 +87,7 @@ checkGlesEmulationStatus(void) int result = -1; /* Check first if the device does not support hardware rendering */ - property_get("ro.softwaregl",prop,"0"); + property_get("ro.libagl",prop,"0"); if(atoi(prop) == 1) return 0;