mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-28 21:26:07 +00:00
Handle VideoSoftware's present fallback better
Not a good idea to abuse bSupportsPostProcessing
This commit is contained in:
parent
26e00c3bb4
commit
f158ff300b
6 changed files with 23 additions and 6 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -15,6 +15,7 @@ public:
|
|||
SWGfx(std::unique_ptr<SWOGLWindow> window);
|
||||
|
||||
bool IsHeadless() const override;
|
||||
virtual bool SupportsUtilityDrawing() const override;
|
||||
|
||||
std::unique_ptr<AbstractTexture> CreateTexture(const TextureConfig& config,
|
||||
std::string_view name) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue