Wx: Log graphics driver info on startup

This commit is contained in:
Connor McLaughlin 2022-03-07 19:46:29 +10:00 committed by lightningterror
parent 062d625901
commit 74bbccdf59
1 changed files with 3 additions and 0 deletions

View File

@ -130,6 +130,9 @@ HostDisplay* Host::AcquireHostDisplay(HostDisplay::RenderAPI api)
return nullptr;
}
Console.WriteLn(Color_StrongGreen, "%s Graphics Driver Info:", HostDisplay::RenderAPIToString(s_host_display->GetRenderAPI()));
Console.Indent().WriteLn(s_host_display->GetDriverInfo());
return s_host_display.get();
}