diff options
author | Mary <me@thog.eu> | 2021-05-04 18:19:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-04 18:19:04 +0200 |
commit | faac08e63883c74e8602d2e36a76af954d48eb28 (patch) | |
tree | f804c0fb5a4a753ef03c45d8a5db2a701aefc61f /Ryujinx/Ui/Applet | |
parent | 1769510a280ab33cb7b31a1f3e17fdb09f5b87cf (diff) |
gtk3: Add base for future Vulkan integration (#2260)
* gtk3: Add base for future Vulkan integration
This PR puts in place the fondation for the future Vulkan integration on
the GTK3 UI.
This also updated SPB to 0.0.3-build14 that fixed a use after free on
XErrorHandler on Linux.
* Address rip's comments
* Merge GLWidget inside GLRenderer
* Clean up and deduplicate renderer implementations
* Address shahil's comments
* Address Ac_K's comments
* Address gdkchan's comments
Diffstat (limited to 'Ryujinx/Ui/Applet')
-rw-r--r-- | Ryujinx/Ui/Applet/GtkHostUiHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Ui/Applet/GtkHostUiHandler.cs b/Ryujinx/Ui/Applet/GtkHostUiHandler.cs index 804a1a27..d74ea3d5 100644 --- a/Ryujinx/Ui/Applet/GtkHostUiHandler.cs +++ b/Ryujinx/Ui/Applet/GtkHostUiHandler.cs @@ -132,7 +132,7 @@ namespace Ryujinx.Ui.Applet public void ExecuteProgram(HLE.Switch device, ProgramSpecifyKind kind, ulong value) { device.UserChannelPersistence.ExecuteProgram(kind, value); - ((MainWindow)_parent).GlRendererWidget?.Exit(); + ((MainWindow)_parent).RendererWidget?.Exit(); } public bool DisplayErrorAppletDialog(string title, string message, string[] buttons) |