Desktop Duplication API & switchable graphics

后端 未结 1 785
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-10 09:52

The problem: calling IDXGIOutput1::DuplicateOutput method returns DXGI_ERROR_UNSUPPORTED when you run an application using discrete graphics controller on a

1条回答
  •  半阙折子戏
    2020-12-10 10:17

    solved:

    unfortunately this issue occurs because the Desktop Duplication API does not support being run against the discrete GPU on a Microsoft Hybrid system. By design, the call fails together with error code DXGI_ERROR_UNSUPPORTED in such a scenario.

    To work around this issue, run the application on the integrated GPU instead of on the discrete GPU on a Microsoft Hybrid system.

    from here: https://support.microsoft.com/en-us/kb/3019314

    0 讨论(0)
提交回复
热议问题