Commit 2428a9d2 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

d3d11: Lie about threading support.

parent 685246b4
......@@ -2780,8 +2780,11 @@ static HRESULT STDMETHODCALLTYPE d3d11_device_CheckFeatureSupport(ID3D11Device *
return E_INVALIDARG;
}
threading_data->DriverConcurrentCreates = FALSE;
threading_data->DriverCommandLists = FALSE;
/* We lie about the threading support to make Tomb Raider 2013 and
* Deus Ex: Human Revolution happy. */
FIXME("Returning fake threading support data.\n");
threading_data->DriverConcurrentCreates = TRUE;
threading_data->DriverCommandLists = TRUE;
return S_OK;
}
case D3D11_FEATURE_D3D10_X_HARDWARE_OPTIONS:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment