We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3168060 commit d57ea9bCopy full SHA for d57ea9b
sources/grabber/windows/DX/DxGrabber.cpp
@@ -958,6 +958,11 @@ void DxGrabber::captureFrame(DisplayHandle& display)
958
Error(_log, "Lost DirectX capture context. Stopping.");
959
_dxRestartNow = true;
960
}
961
+ else if (status == DXGI_ERROR_INVALID_CALL)
962
+ {
963
+ Error(_log, "DirectX invalid call. Stopping.");
964
+ _dxRestartNow = true;
965
+ }
966
else if (display.warningCounter > 0)
967
{
968
Error(_log, "AcquireNextFrame failed. Reason: %i", status);
0 commit comments