From 07b32235ea04d5023631dc33beaee5d173dca30a Mon Sep 17 00:00:00 2001 From: Simon Fels Date: Sun, 20 Aug 2017 14:04:30 +0200 Subject: [PATCH] Don't force host GL driver on nvidia platforms anymore Using the host GL driver is already the default so need to special case this for nvidia. --- src/anbox/cmds/session_manager.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/anbox/cmds/session_manager.cpp b/src/anbox/cmds/session_manager.cpp index 9f632ee6..bd7f809e 100644 --- a/src/anbox/cmds/session_manager.cpp +++ b/src/anbox/cmds/session_manager.cpp @@ -133,13 +133,6 @@ anbox::cmds::SessionManager::SessionManager() return EXIT_FAILURE; } - // If we're running with the properietary nvidia driver we always - // use the host EGL driver as our translation doesn't work here. - if (fs::exists("/dev/nvidiactl")) { - INFO("Detected properietary nvidia driver; forcing use of the host EGL driver."); - gles_driver_ = graphics::GLRendererServer::Config::Driver::Host; - } - utils::ensure_paths({ SystemConfiguration::instance().socket_dir(), SystemConfiguration::instance().input_device_dir(), -- GitLab