Compare commits

...

8 commits

Author SHA1 Message Date
GabCoolGuy
7d9b80cdd4
Merge 8665e6235b into b05eab21a2 2024-12-24 12:46:56 -06:00
Evan Husted
b05eab21a2 misc: always log backend when creating embeddedwindow
Some checks are pending
Canary release job / Create tag (push) Waiting to run
Canary release job / Release for linux-arm64 (push) Waiting to run
Canary release job / Release for linux-x64 (push) Waiting to run
Canary release job / Release for win-x64 (push) Waiting to run
Canary release job / Release MacOS universal (push) Waiting to run
2024-12-24 01:40:29 -06:00
Evan Husted
ff667a5c84 chore: Fix .ctor message source 2024-12-24 01:35:27 -06:00
GabCoolDude
8665e6235b oops, silly me 2024-12-17 15:21:30 +01:00
GabCoolDude
a7f0348cde yurrrr, it's called a 180 babe (reverts previous commit) 2024-12-15 18:38:59 +01:00
GabCoolDude
0197e01cbb Try and center this shit on Linux 2024-12-15 18:24:16 +01:00
Evan Husted
08335043dd
Merge branch 'master' into updatewaitwindowfix 2024-12-08 08:01:47 -06:00
GabCoolGuy
67bb6831df Fix UpdateWaitWindow.axaml windows being too big
There is currently an issue where to windows where it says "Installing firmware..." has no rounded corners
2024-11-24 22:38:11 +01:00
2 changed files with 11 additions and 5 deletions

View file

@ -7,6 +7,7 @@
Title="Ryujinx - Waiting"
SizeToContent="WidthAndHeight"
WindowStartupLocation="CenterOwner"
CanResize="False"
mc:Ignorable="d"
Focusable="True">
<Grid

View file

@ -62,11 +62,6 @@ namespace Ryujinx.Ava.UI.Renderer
KnownGreatMetalTitles.ContainsIgnoreCase(titleId)
? new EmbeddedWindowMetal()
: new EmbeddedWindowVulkan();
string backendText = EmbeddedWindow is EmbeddedWindowVulkan ? "Vulkan" : "Metal";
Logger.Info?.Print(LogClass.Gpu, $"Auto: Using {backendText}");
break;
case GraphicsBackend.OpenGl:
EmbeddedWindow = new EmbeddedWindowOpenGL();
@ -78,6 +73,16 @@ namespace Ryujinx.Ava.UI.Renderer
EmbeddedWindow = new EmbeddedWindowVulkan();
break;
}
string backendText = EmbeddedWindow switch
{
EmbeddedWindowVulkan => "Vulkan",
EmbeddedWindowOpenGL => "OpenGL",
EmbeddedWindowMetal => "Metal",
_ => throw new NotImplementedException()
};
Logger.Info?.PrintMsg(LogClass.Gpu, $"Backend ({ConfigurationState.Instance.Graphics.GraphicsBackend.Value}): {backendText}");
Initialize();
}