Skip to content

Commit

Permalink
ForceDpiAware: X11 implementation (#3269)
Browse files Browse the repository at this point in the history
* ForceDpiAware: X11 implementation

* address comments
  • Loading branch information
merryhime authored Apr 10, 2022
1 parent 43ebd7a commit 247d26b
Showing 1 changed file with 40 additions and 2 deletions.
42 changes: 40 additions & 2 deletions Ryujinx.Common/System/ForceDpiAware.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Ryujinx.Common.Logging;
using System;
using System.Drawing;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;

Expand All @@ -11,6 +12,23 @@ public static class ForceDpiAware
[DllImport("user32.dll")]
private static extern bool SetProcessDPIAware();

private const string X11LibraryName = "libX11.so.6";

[DllImport(X11LibraryName)]
private static extern IntPtr XOpenDisplay(string display);

[DllImport(X11LibraryName)]
private static extern IntPtr XGetDefault(IntPtr display, string program, string option);

[DllImport(X11LibraryName)]
private static extern int XDisplayWidth(IntPtr display, int screenNumber);

[DllImport(X11LibraryName)]
private static extern int XDisplayWidthMM(IntPtr display, int screenNumber);

[DllImport(X11LibraryName)]
private static extern int XCloseDisplay(IntPtr display);

private static readonly double _standardDpiScale = 96.0;
private static readonly double _maxScaleFactor = 1.25;

Expand All @@ -36,9 +54,29 @@ public static double GetWindowScaleFactor()
{
userDpiScale = Graphics.FromHwnd(IntPtr.Zero).DpiX;
}
else
else if (OperatingSystem.IsLinux())
{
// TODO: Linux support
string xdgSessionType = Environment.GetEnvironmentVariable("XDG_SESSION_TYPE")?.ToLower();

if (xdgSessionType == null || xdgSessionType == "x11")
{
IntPtr display = XOpenDisplay(null);
string dpiString = Marshal.PtrToStringAnsi(XGetDefault(display, "Xft", "dpi"));
if (dpiString == null || !double.TryParse(dpiString, NumberStyles.Any, CultureInfo.InvariantCulture, out userDpiScale))
{
userDpiScale = (double)XDisplayWidth(display, 0) * 25.4 / (double)XDisplayWidthMM(display, 0);
}
XCloseDisplay(display);
}
else if (xdgSessionType == "wayland")
{
// TODO
Logger.Warning?.Print(LogClass.Application, $"Couldn't determine monitor DPI: Wayland not yet supported");
}
else
{
Logger.Warning?.Print(LogClass.Application, $"Couldn't determine monitor DPI: Unrecognised XDG_SESSION_TYPE: {xdgSessionType}");
}
}
}
catch (Exception e)
Expand Down

0 comments on commit 247d26b

Please sign in to comment.