Bähny
Bähny

Reputation: 35

Direct3D12 Device creation fails with DXGI_ERROR_UNSUPPORTED

i'm trying to start d3d12 developement with the windows 10 preview Build 10074 and the Visual Studio 2015 RC Pro

But i'm getting DXGI_ERROR_UNSUPPORTED "The specified device or feature level is not supported on this system" when I try to create the ID3D12Device

HRESULT hr = D3D12CreateDevice(0, D3D_FEATURE_LEVEL_11_0, __uuidof(ID3D12Devie), (void**)&device);

I'm working on a Laptop with 2 Gpus:

Well the intel gpu has the wrong driver model, but the nvidia gpu should match the d3d12 requirements at least for feature level 11.

I have tried to start visual studio with with Rightclick->Graphicprocessor->NVIDIA and to start the exe directly but it makes no difference.

Did I miss something?

Upvotes: 1

Views: 3205

Answers (1)

Bähny
Bähny

Reputation: 35

Now it works, I needed the newest NVIDIA Driver (352.84) released few days ago.

Well Windows 10 has updated my intel driver as well so it works with both GPUs now.

Both use WDDM 2.0 now.

Upvotes: 2

Related Questions