使用CreateSwapChainForComposition创建交换链时发生异常

时间:2018-08-31 16:41:20

标签: c# xaml uwp sharpdx directx-12

我正在尝试使用 SharpDx SwapChainPanel 中渲染 DirectX12 ,但由于未知原因,创建SwapChain失败。这是我所拥有的简化版本:

// select adapter based on some simple scoring mechanism
SelectedAdapter = SelectAdapter();

// create device
using (var defaultDevice = new Device(SelectedAdapter, FeatureLevel.Level_12_0))
    Device = defaultDevice.QueryInterface<SharpDX.Direct3D12.Device2>();

// describe swap chain
SwapChainDescription1 swapChainDescription = new SwapChainDescription1
{
    AlphaMode = AlphaMode.Ignore,
    BufferCount = 2,
    Format = Format.R8G8B8A8_UNorm,
    Height = (int)(MainSwapChainPanel.RenderSize.Height),
    Width = (int)(MainSwapChainPanel.RenderSize.Width),
    SampleDescription = new SampleDescription(1, 0),
    Scaling = Scaling.Stretch,
    Stereo = false,
    SwapEffect = SwapEffect.FlipSequential,
    Usage = Usage.RenderTargetOutput
};

// create swap chain
using (var factory2 = SelectedAdapter.GetParent<Factory2>())
{
    /*--> throws exception:*/
    SwapChain1 swapChain1 = new SwapChain1(factory2, Device, ref swapChainDescription);
    SwapChain = swapChain1.QueryInterface<SwapChain2>();
}

// tie created swap chain with swap chain panel
using (ISwapChainPanelNative nativeObject = ComObject.As<ISwapChainPanelNative>(MainSwapChainPanel))
    nativeObject.SwapChain = SwapChain;

适配器的选择符合预期(我有2个适配器+软件适配器)。我可以创建设备,并且可以看到任务管理器中的应用程序正在使用所选的适配器。

交换链的创建主要基于以下文档:https://docs.microsoft.com/en-us/windows/uwp/gaming/directx-and-xaml-interop#swapchainpanel-and-gaming

我得到了 factory2 (列举了所有适配器和其他东西)。 SwapChain1 的构造函数在内部使用 factory2 创建交换链:https://github.com/sharpdx/SharpDX/blob/master/Source/SharpDX.DXGI/SwapChain1.cs#L64

我将此方法与其他几个示例和教程进行了比较,这是应该采用的方法,但是,无论我选择还是使用 Format 适配器,我都会不断收到此异常:

  

{SharpDX.SharpDXException:HRESULT:[0x887A0001],模块:   [SharpDX.DXGI],ApiCode:[DXGI_ERROR_INVALID_CALL / InvalidCall],   消息:应用程序发出的呼叫无效。要么   调用参数或某些对象的状态不正确。   启用D3D调试层,以便通过调试消息查看详细信息。

     

在SharpDX.Result.CheckError()在   SharpDX.DXGI.Factory2.CreateSwapChainForComposition(IUnknown   deviceRef,SwapChainDescription1&descRef,OutputstrictToOutputRef,   SharpDX.DXGI.SwapChain1..ctor(Factory2)上的SwapChain1 swapChainOut)   工厂,ComObject设备,SwapChainDescription1&描述,输出   UI.MainPage.CreateSwapChain()处的limitToOutput)

DebugLayer 不显示任何其他信息。

该应用程序本身是常规的Windows Universal Blank应用程序(最低目标版本Creators Update 15063)。我知道我可以在当前的硬件上运行Directx12(C ++ hello world可以正常工作)。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

这就是我的工作方式:

try
{
    using (var factory4 = new Factory4())
    {
        SwapChain1 swapChain1 = new SwapChain1(factory4, CommandQueue, ref swapChainDescription);
        SwapChain = swapChain1.QueryInterface<SwapChain2>();
    }
 }
 catch (Exception e)
 {
     Debug.WriteLine(e.Message);
     return;
 }

 using (ISwapChainPanelNative nativeObject = ComObject.As<ISwapChainPanelNative>(MainSwapChainPanel))
     nativeObject.SwapChain = SwapChain;

因此,基本上,我需要Factory4接口来创建临时SwapChain1,可以从中查询SwapChain2,然后可以将此SwapChain2附加到SwapChainPanel。

此外,在这里要注意的一个非常重要的事情是,即使SwapChain1构造函数签名(和文档)https://github.com/sharpdx/SharpDX/blob/master/Source/SharpDX.DXGI/SwapChain1.cs#L51表示第二个参数应该是设备-也不应该。您需要传递的是CommandQueue对象。我不知道为什么。

此外,SwapChain1的构造函数表示它需要Factory2,但没有,您必须传递Factory4!