Naively copy pasting from https://devblogs.microsoft.com/directx/dred/
winrt::com_ptr<ID3D12DeviceRemovedExtendedDataSettings> pDredSettings;
winrt::check_hresult(D3D12GetDebugInterface(IID_PPV_ARGS(&pDredSettings)));
pDredSettings->SetAutoBreadcrumbsEnablement(D3D12_DRED_ENABLEMENT_FORCED_ON);
pDredSettings->SetPageFaultEnablement(D3D12_DRED_ENABLEMENT_FORCED_ON);
winrt::com_ptr<ID3D12DeviceRemovedExtendedData> pDred;
winrt::check_hresult(device->QueryInterface(IID_PPV_ARGS(&pDred)));
D3D12_DRED_AUTO_BREADCRUMBS_OUTPUT DredAutoBreadcrumbsOutput;
D3D12_DRED_PAGE_FAULT_OUTPUT DredPageFaultOutput;
winrt::check_hresult(pDred->GetAutoBreadcrumbsOutput(&DredAutoBreadcrumbsOutput)); // error
// 0x887A0004 : 'The specified device interface or feature level is not supported on this system.'.
Any ideas?