You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After removing "disable-gpu" switch in settings.json user was able to get GPU accelerated rendering working in version 130.0, but it doesn't work for him in version 130.1.
Need to re-check if CEF binaries are in proper versions. In both 130.0 and 130.1 I had strange issues with GPU, and it seemed it was caused due to nvidia drivers, however I couldn't reproduce them in upstream cefclient/cefsimple apps which was puzzling.
The text was updated successfully, but these errors were encountered:
Manifests can be found in Standard Distribution binaries in tests/cefclient/win/ subfolder.
Possible fix for GPU issue:
Create "phpdesktop-chrome.exe.manifest" file next to main executable with these contents:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assemblyxmlns="urn:schemas-microsoft-com:asm.v1"manifestVersion="1.0">
<compatibilityxmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<!--The ID below indicates application support for Windows Vista -->
<supportedOSId="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/>
<!--The ID below indicates application support for Windows 7 -->
<supportedOSId="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/>
<!--The ID below indicates application support for Windows 8 -->
<supportedOSId="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/>
<!--The ID below indicates application support for Windows 8.1 -->
<supportedOSId="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/>
<!--The ID below indicates application support for Windows 10 -->
<supportedOSId="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
<!-- This tag is required for XAML islands usage in the process for media scenarios. --><!-- This version corresponds to the Windows 10 May 2019 Update. -->
<maxversiontestedId="10.0.18362.0"/>
</application>
</compatibility>
<dependency>
<dependentAssembly>
<assemblyIdentitytype="Win32"name="Microsoft.Windows.Common-Controls"version="6.0.0.0"processorArchitecture="*"publicKeyToken="6595b64144ccf1df"language="*"></assemblyIdentity>
</dependentAssembly>
</dependency>
<trustInfoxmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevellevel="asInvoker" />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
Remove "disable-gpu" switch from settings.json file.
After removing "disable-gpu" switch in settings.json user was able to get GPU accelerated rendering working in version 130.0, but it doesn't work for him in version 130.1.
User reported on old forum here:
https://groups.google.com/g/phpdesktop/c/cQJMLxG9cTg/m/dHyu9mCZCwAJ
There are two differences between 130.0 and 130.1 that could possibly affect this:
Need to re-check if CEF binaries are in proper versions. In both 130.0 and 130.1 I had strange issues with GPU, and it seemed it was caused due to nvidia drivers, however I couldn't reproduce them in upstream cefclient/cefsimple apps which was puzzling.
The text was updated successfully, but these errors were encountered: