Loading libs/graphicsenv/GraphicsEnv.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -548,7 +548,7 @@ void GraphicsEnv::setDebugLayersGLES(const std::string layers) { } // Return true if all the required libraries from vndk and sphal namespace are // linked to the Game Driver namespace correctly. // linked to the updatable gfx driver namespace correctly. bool GraphicsEnv::linkDriverNamespaceLocked(android_namespace_t* vndkNamespace) { const std::string llndkLibraries = getSystemNativeLibraries(NativeLibrary::LLNDK); if (llndkLibraries.empty()) { Loading opengl/libs/EGL/Loader.cpp +2 −0 Original line number Diff line number Diff line Loading @@ -514,6 +514,8 @@ static void* load_updated_driver(const char* kind, android_namespace_t* ns) { if (so) { return so; } ALOGE("Could not load %s from updatable gfx driver namespace: %s.", name.c_str(), dlerror()); } return nullptr; } Loading vulkan/libvulkan/driver.cpp +2 −0 Original line number Diff line number Diff line Loading @@ -183,6 +183,8 @@ int LoadDriver(android_namespace_t* library_namespace, .library_namespace = library_namespace, }; so = android_dlopen_ext(lib_name.c_str(), LIB_DL_FLAGS, &dlextinfo); ALOGE("Could not load %s from updatable gfx driver namespace: %s.", lib_name.c_str(), dlerror()); } else { // load built-in driver so = android_load_sphal_library(lib_name.c_str(), LIB_DL_FLAGS); Loading Loading
libs/graphicsenv/GraphicsEnv.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -548,7 +548,7 @@ void GraphicsEnv::setDebugLayersGLES(const std::string layers) { } // Return true if all the required libraries from vndk and sphal namespace are // linked to the Game Driver namespace correctly. // linked to the updatable gfx driver namespace correctly. bool GraphicsEnv::linkDriverNamespaceLocked(android_namespace_t* vndkNamespace) { const std::string llndkLibraries = getSystemNativeLibraries(NativeLibrary::LLNDK); if (llndkLibraries.empty()) { Loading
opengl/libs/EGL/Loader.cpp +2 −0 Original line number Diff line number Diff line Loading @@ -514,6 +514,8 @@ static void* load_updated_driver(const char* kind, android_namespace_t* ns) { if (so) { return so; } ALOGE("Could not load %s from updatable gfx driver namespace: %s.", name.c_str(), dlerror()); } return nullptr; } Loading
vulkan/libvulkan/driver.cpp +2 −0 Original line number Diff line number Diff line Loading @@ -183,6 +183,8 @@ int LoadDriver(android_namespace_t* library_namespace, .library_namespace = library_namespace, }; so = android_dlopen_ext(lib_name.c_str(), LIB_DL_FLAGS, &dlextinfo); ALOGE("Could not load %s from updatable gfx driver namespace: %s.", lib_name.c_str(), dlerror()); } else { // load built-in driver so = android_load_sphal_library(lib_name.c_str(), LIB_DL_FLAGS); Loading