obs-studio/libobs-d3d11
jp9000 8e8834f109 libobs-d3d11: Rebuild device and assets if device removed/reset
Due to an NVIDIA driver bug with the Windows 10 Anniversary Update,
there are an increasingly large number of reports of "Device Removed"
errors and TDRs.  When this happens, OBS stops outputting all data
because all graphics functions are failing, and it appears to just
"freeze up" for users.

To temporarily alleviate this issue while waiting for it to be fixed,
the D3D subsystem can be rebuilt when that happens, all assets can be
reloaded to ensure that it can continue functioning (with a minor hiccup
in playback).

To allow rebuilding the entire D3D subsystem, all objects that contain
D3D references must be part of a linked list (with a few exceptions) so
we can quickly traverse them all whenever needed, and all data for those
resources (static resources primarily, such as shaders, textures, index
buffers, vertex buffers) must be stored in RAM so they can be recreated
whenever needed.

Then if D3D reports a "device removed" or "device reset" error, all D3D
references must first be fully released with no stray references; the
linked list must be fully traversed until all references are released.
Then, the linked list must once again be traversed again, and all those
D3D objects must be recreated with the same data and descriptors (which
are now saved in each object).  Finally, all states need to be reset.

After that's complete, the device is able to continue functioning almost
as it was before, although the output to recording/stream may get a few
green frames due to texture data being reset.

This will temporarily alleviate the "Device Removed" issue while waiting
for a fix from NVIDIA.
2016-11-03 09:23:24 -07:00
..
CMakeLists.txt libobs-d3d11: Rebuild device and assets if device removed/reset 2016-11-03 09:23:24 -07:00
d3d11-duplicator.cpp libobs-d3d11: Use linked list for all objects (for rebuilding) 2016-11-03 09:23:21 -07:00
d3d11-indexbuffer.cpp libobs-d3d11: Use linked list for all objects (for rebuilding) 2016-11-03 09:23:21 -07:00
d3d11-rebuild.cpp libobs-d3d11: Rebuild device and assets if device removed/reset 2016-11-03 09:23:24 -07:00
d3d11-samplerstate.cpp libobs-d3d11: Use linked list for all objects (for rebuilding) 2016-11-03 09:23:21 -07:00
d3d11-shader.cpp libobs-d3d11: Use linked list for all objects (for rebuilding) 2016-11-03 09:23:21 -07:00
d3d11-shaderprocessor.cpp libobs-d3d11: Store shader samplers as pointers 2016-11-03 09:23:10 -07:00
d3d11-shaderprocessor.hpp libobs-d3d11: Store shader samplers as pointers 2016-11-03 09:23:10 -07:00
d3d11-stagesurf.cpp libobs-d3d11: Use linked list for all objects (for rebuilding) 2016-11-03 09:23:21 -07:00
d3d11-subsystem.cpp libobs-d3d11: Rebuild device and assets if device removed/reset 2016-11-03 09:23:24 -07:00
d3d11-subsystem.hpp libobs-d3d11: Rebuild device and assets if device removed/reset 2016-11-03 09:23:24 -07:00
d3d11-texture2d.cpp libobs-d3d11: Use linked list for all objects (for rebuilding) 2016-11-03 09:23:21 -07:00
d3d11-vertexbuffer.cpp libobs-d3d11: Use linked list for all objects (for rebuilding) 2016-11-03 09:23:21 -07:00
d3d11-zstencilbuffer.cpp libobs-d3d11: Use linked list for all objects (for rebuilding) 2016-11-03 09:23:21 -07:00