Use Per monitor scaling where supported
Fixes blurriness in higher DPI systems
This commit is contained in:
parent
564ac883a4
commit
b377f48440
|
@ -1,28 +1,23 @@
|
||||||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
|
||||||
<trustInfo xmlns='urn:schemas-microsoft-com:asm.v3'>
|
<dependency>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"></assemblyIdentity>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
<security>
|
<security>
|
||||||
<requestedPrivileges>
|
<requestedPrivileges>
|
||||||
<requestedExecutionLevel level='asInvoker' uiAccess='false' />
|
<requestedExecutionLevel level="asInvoker" uiAccess="false"></requestedExecutionLevel>
|
||||||
</requestedPrivileges>
|
</requestedPrivileges>
|
||||||
</security>
|
</security>
|
||||||
</trustInfo>
|
</trustInfo>
|
||||||
<assemblyIdentity
|
<asmv3:application>
|
||||||
version='2.1.0.1'
|
<asmv3:windowsSettings>
|
||||||
processorArchitecture='x86'
|
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
|
||||||
name='Project64'
|
<!-- Fallback for Windows XP, Vista, 7 and 8 -->
|
||||||
type='win32'
|
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">permonitorv2,permonitor</dpiAwareness>
|
||||||
/>
|
<!-- Win10 Only: Falls back to per-monitor if per-monitor v2 is not supported -->
|
||||||
<dependency>
|
</asmv3:windowsSettings>
|
||||||
<dependentAssembly>
|
</asmv3:application>
|
||||||
<assemblyIdentity
|
</assembly>
|
||||||
type='win32'
|
|
||||||
name='Microsoft.Windows.Common-Controls'
|
|
||||||
version='6.0.0.0'
|
|
||||||
processorArchitecture='X86'
|
|
||||||
publicKeyToken='6595b64144ccf1df'
|
|
||||||
language='*'
|
|
||||||
/>
|
|
||||||
</dependentAssembly>
|
|
||||||
</dependency>
|
|
||||||
</assembly>
|
|
Loading…
Reference in New Issue