mirror of https://github.com/PCSX2/pcsx2.git
GSdx:
- Re-enable the D3D10_CREATE_DEVICE_SINGLETHREADED flag, since it seems to be stable again. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2283 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
97d52323d1
commit
f1f6236a02
|
@ -75,9 +75,9 @@ bool GSDevice10::Create(GSWnd* wnd)
|
|||
// NOTE : This flag can be enabled for both managed and unmanaged windows, as soon as
|
||||
// PCSX2-side properly implements DXGIFactory mess to disable the internal alt-enter crap
|
||||
// that DirectX10 forces upon us (and thus causes threading issues because the window
|
||||
// message pump isn't on the sae thread as the MTGS).
|
||||
// message pump isn't on the same thread as the MTGS).
|
||||
|
||||
uint32 flags = m_wnd->IsManaged() ? D3D10_CREATE_DEVICE_SINGLETHREADED : 0;
|
||||
uint32 flags = /*m_wnd->IsManaged() ?*/ D3D10_CREATE_DEVICE_SINGLETHREADED /*: 0*/;
|
||||
|
||||
#ifdef DEBUG
|
||||
flags |= D3D10_CREATE_DEVICE_DEBUG;
|
||||
|
|
Loading…
Reference in New Issue