Disable OpenGL on macOS

This commit is contained in:
nastys 2022-01-10 14:37:26 +01:00 committed by Ivan
parent 6d737e61fd
commit 29a6db8960
4 changed files with 12 additions and 0 deletions

View file

@ -332,11 +332,13 @@ void gui_application::InitializeCallbacks()
g_fxo->init<rsx::thread, named_thread<NullGSRender>>();
break;
}
#if not defined(__APPLE__)
case video_renderer::opengl:
{
g_fxo->init<rsx::thread, named_thread<GLGSRender>>();
break;
}
#endif
#if defined(HAVE_VULKAN)
case video_renderer::vulkan:
{