commit | 9058b8fe8c00609768a828e3e1476d7f24754fed | [log] [tgz] |
---|---|---|
author | Yiwei Zhang <zzyiwei@google.com> | Thu Nov 12 20:23:00 2020 +0000 |
committer | Yiwei Zhang <zzyiwei@google.com> | Fri Nov 13 17:45:15 2020 +0000 |
tree | e5ae32ff7ce03b5e0953dd019e8a63e4416c1b70 | |
parent | d7c0aa947c9c1adc70b35d649b3b3222ea75b49b [diff] [blame] |
Vulkan/OpenGL: log dlerror for loading updatable gfx driver Test: build Change-Id: Ifcb57266f5d93767ba911f70695e0bbbeace98e6
diff --git a/opengl/libs/EGL/Loader.cpp b/opengl/libs/EGL/Loader.cpp index 1afc693..76fd7f0 100644 --- a/opengl/libs/EGL/Loader.cpp +++ b/opengl/libs/EGL/Loader.cpp
@@ -514,6 +514,8 @@ if (so) { return so; } + ALOGE("Could not load %s from updatable gfx driver namespace: %s.", name.c_str(), + dlerror()); } return nullptr; }