添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement . We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What steps will reproduce the problem?

  • use MinimalExample complied CefSharp.MinimalExample.Wpf
  • open WPF example on 11th Intel Core cpu whit Iris Xe graphics.
  • the web page don't auto redraw unless manual resize window.
  • What is the expected output? What do you see instead?
    it's not any expected output, just this page doesn't redraw.

    Please provide any additional information below.
    CefSharp.WinForm dosen't have this problem. just WPF have.
    use this code disable WPF hardware acceleration, everything seem normal.

    protected override void OnSourceInitialized(EventArgs e)
                base.OnSourceInitialized(e);
                HwndSource source = PresentationSource.FromVisual(this) as HwndSource;
                if (source != null)
                    source.CompositionTarget.RenderMode = RenderMode.SoftwareOnly;
    
  • Does this problem also occur in the CEF Sample Application
    NO, only occur in CefSharp.WPF.
  • changed the title CefSharp.WPF cannot render page on Intel 11th Core Iris Xe Integration graphic card CefSharp.WPF cannot redraw page on Intel 11th Core Iris Xe Integration graphic card Nov 13, 2020 changed the title CefSharp.WPF cannot redraw page on Intel 11th Core Iris Xe Integration graphic card WPF - cannot redraw page on Intel 11th Core Iris Xe Integration graphic card Nov 13, 2020

    Thanks for the workaround 👍 Have you reported the issue with the WPF team?

    Making this as known-issue.

    As this doesn't appear to be anything actionable from a CefSharp point of view I'm going to close this.

    Thanks for the workaround 👍 Have you reported the issue with the WPF team?

    Making this as known-issue.

    As this doesn't appear to be anything actionable from a CefSharp point of view I'm going to close this.

    okay, thanks for you reply.

    I haven't reported this to the WPF Team, now that I'll report the issue to WPF team.