Use XAppGpuOffloadHelper for gpu offloading, respect
PrefersNonDefaultGPU desktop entry key. XApp.util_gpu_offload_supported() is still used as a fallback for older libxapp versions.
This commit is contained in:
parent
90688a9c9f
commit
e4eab43d06
@ -10,6 +10,7 @@ import traceback
|
|||||||
import gi
|
import gi
|
||||||
gi.require_version("Gtk", "3.0")
|
gi.require_version("Gtk", "3.0")
|
||||||
gi.require_version('MatePanelApplet', '4.0')
|
gi.require_version('MatePanelApplet', '4.0')
|
||||||
|
gi.require_version('XApp', '1.0')
|
||||||
from gi.repository import Gtk, GdkPixbuf, Gdk, GObject
|
from gi.repository import Gtk, GdkPixbuf, Gdk, GObject
|
||||||
from gi.repository import MatePanelApplet
|
from gi.repository import MatePanelApplet
|
||||||
from gi.repository import Gio
|
from gi.repository import Gio
|
||||||
|
@ -192,9 +192,13 @@ class pluginclass(object):
|
|||||||
self.canOffload = False
|
self.canOffload = False
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.canOffload = XApp.util_gpu_offload_supported()
|
helper = XApp.GpuOffloadHelper.get_sync()
|
||||||
|
self.canOffload = helper.is_offload_supported()
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
print("Could not check for gpu offload support - maybe xapps isn't up to date.");
|
try:
|
||||||
|
self.canOffload = XApp.util_gpu_offload_supported()
|
||||||
|
except AttributeError:
|
||||||
|
print("Could not check for gpu offload support - maybe xapps isn't up to date.");
|
||||||
|
|
||||||
# Detect the locale (this is used for the Wikipedia search)
|
# Detect the locale (this is used for the Wikipedia search)
|
||||||
self.lang = "en"
|
self.lang = "en"
|
||||||
|
@ -268,6 +268,7 @@ class ApplicationLauncher(easyButton):
|
|||||||
self.appMateDocPath = desktopItem.get("X-MATE-DocPath") or ""
|
self.appMateDocPath = desktopItem.get("X-MATE-DocPath") or ""
|
||||||
self.useTerminal = desktopItem.getTerminal()
|
self.useTerminal = desktopItem.getTerminal()
|
||||||
self.appPath = desktopItem.getPath()
|
self.appPath = desktopItem.getPath()
|
||||||
|
self.prefersOffload = desktopItem.get("PrefersNonDefaultGPU", "Desktop Entry", type="boolean")
|
||||||
|
|
||||||
if not self.appMateDocPath:
|
if not self.appMateDocPath:
|
||||||
self.appKdeDocPath = desktopItem.getDocPath() or ""
|
self.appKdeDocPath = desktopItem.getDocPath() or ""
|
||||||
@ -355,6 +356,9 @@ class ApplicationLauncher(easyButton):
|
|||||||
except KeyError:
|
except KeyError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
if self.prefersOffload:
|
||||||
|
offload = True
|
||||||
|
|
||||||
Execute(None, desktopFile=self.desktopFile, offload=offload)
|
Execute(None, desktopFile=self.desktopFile, offload=offload)
|
||||||
|
|
||||||
def uninstall(self, *args):
|
def uninstall(self, *args):
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from gi.repository import Gio, GLib, Gdk
|
from gi.repository import Gio, GLib, Gdk, XApp
|
||||||
|
|
||||||
|
|
||||||
def RemoveArgs(Execline):
|
def RemoveArgs(Execline):
|
||||||
@ -32,8 +32,19 @@ def Execute(cmd , commandCwd=None, desktopFile=None, offload=False):
|
|||||||
if offload:
|
if offload:
|
||||||
print("Offloading '%s' to discrete gpu." % launcher.get_name());
|
print("Offloading '%s' to discrete gpu." % launcher.get_name());
|
||||||
|
|
||||||
context.setenv("__NV_PRIME_RENDER_OFFLOAD", "1")
|
try:
|
||||||
context.setenv("__GLX_VENDOR_LIBRARY_NAME", "nvidia");
|
helper = XApp.GpuOffloadHelper.get_sync()
|
||||||
|
infos = helper.get_offload_infos()
|
||||||
|
|
||||||
|
if infos:
|
||||||
|
i = 0
|
||||||
|
env_strv = infos[0].env_strv
|
||||||
|
while i < len(env_strv):
|
||||||
|
context.setenv(env_strv[i], env_strv[i + 1])
|
||||||
|
i += 2
|
||||||
|
except AttributeError:
|
||||||
|
context.setenv("__NV_PRIME_RENDER_OFFLOAD", "1")
|
||||||
|
context.setenv("__GLX_VENDOR_LIBRARY_NAME", "nvidia");
|
||||||
|
|
||||||
try:
|
try:
|
||||||
retval = launcher.launch_uris_as_manager(uris=[],
|
retval = launcher.launch_uris_as_manager(uris=[],
|
||||||
|
Loading…
Reference in New Issue
Block a user