提交 1df9bcfa 编写于 作者: P Palana

Log warning when falling back to OpenGL on windows

上级 8b93ba1c
......@@ -1370,6 +1370,11 @@ int OBSBasic::ResetVideo()
if (IS_WIN32 && ret != OBS_VIDEO_SUCCESS) {
/* Try OpenGL if DirectX fails on windows */
if (astrcmpi(ovi.graphics_module, "libobs-opengl") != 0) {
blog(LOG_WARNING, "Failed to initialize obs video (%d) "
"with graphics_module='%s', retrying "
"with graphics_module='%s'",
ret, ovi.graphics_module,
"libobs-opengl");
ovi.graphics_module = "libobs-opengl";
ret = AttemptToResetVideo(&ovi);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册