Handle VideoSoftware's present fallback better

Not a good idea to abuse bSupportsPostProcessing
This commit is contained in:
Scott Mansell
2023-01-28 16:23:30 +13:00
parent 26e00c3bb4
commit f158ff300b
6 changed files with 23 additions and 6 deletions

View File

@ -27,6 +27,11 @@ bool SWGfx::IsHeadless() const
return m_window->IsHeadless();
}
bool SWGfx::SupportsUtilityDrawing() const
{
return false;
}
std::unique_ptr<AbstractTexture> SWGfx::CreateTexture(const TextureConfig& config,
[[maybe_unused]] std::string_view name)
{