2

DirectX10 で SlimDX プロジェクトをセットアップしていますが、どういうわけかマルチサンプリングが機能しません。これが私のデバイスの初期化です:

    // Create swap chain description
    DXGI.SwapChainDescription swapChainDesc = new DXGI.SwapChainDescription()
    {
        BufferCount = 1,
        Usage = DXGI.Usage.RenderTargetOutput,
        OutputHandle = Window.Handle,
        IsWindowed = true,
        ModeDescription = new DXGI.ModeDescription(0, 0, new Rational(60, 1), DXGI.Format.R8G8B8A8_UNorm),
        SampleDescription = new DXGI.SampleDescription(2, 0),
        Flags = DXGI.SwapChainFlags.AllowModeSwitch,
        SwapEffect = DXGI.SwapEffect.Discard
    };

    // Get device
    DX10.Device.CreateWithSwapChain(null, DX10.DriverType.Hardware, DX10.DeviceCreationFlags.None, swapChainDesc, out Device, out SwapChain);

    // Get back buffer
    using (DX10.Texture2D texture = DX10.Resource.FromSwapChain<DX10.Texture2D>(SwapChain, 0))
        BackBuffer = new DX10.RenderTargetView(Device, texture);

    // Set viewport
    var viewport = new DX10.Viewport(0, 0, Window.ClientSize.Width, Window.ClientSize.Height);
    Device.OutputMerger.SetTargets(BackBuffer);
    Device.Rasterizer.SetViewports(viewport);

    // Disable alt+enter
    using (var factory = SwapChain.GetParent<DXGI.Factory>())
        factory.SetWindowAssociation(Window.Handle, DXGI.WindowAssociationFlags.IgnoreAll);

    // Create depth buffer description
    DX10.Texture2DDescription depthDesc = new DX10.Texture2DDescription
    {
        Width = Window.ClientSize.Width,
        Height = Window.ClientSize.Height,
        MipLevels = 1,
        ArraySize = 1,
        Format = DXGI.Format.D24_UNorm_S8_UInt,
        SampleDescription = new DXGI.SampleDescription(1, 0),
        Usage = DX10.ResourceUsage.Default,
        BindFlags = DX10.BindFlags.DepthStencil,
        CpuAccessFlags = DX10.CpuAccessFlags.None,
        OptionFlags = DX10.ResourceOptionFlags.None
    };

    // Get depth buffer
    DX10.Texture2D depthStencilBuffer = new DX10.Texture2D(Device, depthDesc);
    DX10.DepthStencilView depthStencilView = new DX10.DepthStencilView(Device, depthStencilBuffer);
    depthStencilBuffer.Dispose();

シンプルなボックスをレンダリングしています。私もチェックしました

Device.CheckMultisampleQualityLevels(DXGI.Format.R8G8B8A8_UNorm, 4)

1、2、4、8、および 16 サンプル。関数が 1 を返すたびに。しかし、SwapChainDescription SampleDescription Quality に 1 を入れると、デバイスの作成でエラーがスローされます。

E_INVALIDARG: 返される関数に無効なパラメーターが渡されました (-2147024809)

基本的に、品質カウントには 0 しか入れられません。ただし、私のノートブックではさまざまな品質レベルを選択できますが、そこでもマルチサンプリングは機能せず、PC とノートブックの両方のグラフィック カードがマルチサンプリングをサポートしています。

私が間違っていることはありますか?

4

1 に答える 1

1

わかりました、今は初心者の質問をしているようです...私は単にラスタライザを初期化するのを忘れました:

SlimDX.Direct3D10.RasterizerStateDescription rasteriserDesc = new SlimDX.Direct3D10.RasterizerStateDescription()
{
    CullMode = SlimDX.Direct3D10.CullMode.Back,
    DepthBias = 0,
    DepthBiasClamp = 0,
    FillMode = SlimDX.Direct3D10.FillMode.Solid,
    IsAntialiasedLineEnabled = true,
    IsDepthClipEnabled = true,
    IsFrontCounterclockwise = false,
    IsMultisampleEnabled = true,
    IsScissorEnabled = false,
    SlopeScaledDepthBias = 0
};

Device.Rasterizer.State = SlimDX.Direct3D10.RasterizerState.FromDescription(device, rasteriserDesc);

これで、マルチサンプリングが正常に機能しています。

于 2012-09-05T15:51:00.790 に答える