Skip to content

Commit

Permalink
Lowered DX feature level requirement to DX12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio0694 committed Oct 7, 2019
1 parent 9926ff4 commit 911ac1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ComputeSharp.Graphics/Helpers/DeviceHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ internal static class DeviceHelper
foreach (IDXGIAdapter1 adapter in factory.EnumAdapters1())
{
if (adapter.Description.DedicatedVideoMemory == 0) continue;
if (D3D12.D3D12CreateDevice(adapter, FeatureLevel.Level_12_1, out ID3D12Device device).Success)
if (D3D12.D3D12CreateDevice(adapter, FeatureLevel.Level_12_0, out ID3D12Device device).Success)
devices.Add((device, adapter.Description));
}

Expand Down

0 comments on commit 911ac1d

Please sign in to comment.