Reputation: 51
I have a WPF application, when I use cefsharp display the HTML, it looks blurry。 I have tried to use the following code, but it does not work.
settings.CefCommandLineArgs.Add("disable-gpu", "1");
settings.CefCommandLineArgs.Add("disable-gpu-compositing", "1");
settings.CefCommandLineArgs.Add("enable-begin-frame-scheduling", "1");
settings.CefCommandLineArgs.Add("disable-gpu-vsync", "1");
Cef.EnableHighDPISupport();
Are there other ways to fix it?
Upvotes: 1
Views: 915