Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Revert "D3DBase: Don't pass the DEBUG flag when creating a device"
This reverts commit 0e6b5bc.
  • Loading branch information
magcius committed Aug 15, 2013
1 parent c6d8d52 commit 605e3e8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Source/Plugins/Plugin_VideoDX11/Src/D3DBase.cpp
Expand Up @@ -333,7 +333,11 @@ HRESULT Create(HWND wnd)
swap_chain_desc.BufferDesc.Width = xres;
swap_chain_desc.BufferDesc.Height = yres;

#if defined(_DEBUG) || defined(DEBUGFAST)
D3D11_CREATE_DEVICE_FLAG device_flags = (D3D11_CREATE_DEVICE_FLAG)(D3D11_CREATE_DEVICE_DEBUG|D3D11_CREATE_DEVICE_SINGLETHREADED);
#else
D3D11_CREATE_DEVICE_FLAG device_flags = D3D11_CREATE_DEVICE_SINGLETHREADED;
#endif
hr = PD3D11CreateDeviceAndSwapChain(adapter, D3D_DRIVER_TYPE_UNKNOWN, NULL, device_flags,
supported_feature_levels, NUM_SUPPORTED_FEATURE_LEVELS,
D3D11_SDK_VERSION, &swap_chain_desc, &swapchain, &device,
Expand Down

0 comments on commit 605e3e8

Please sign in to comment.