mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
Handle VideoSoftware's present fallback better
Not a good idea to abuse bSupportsPostProcessing
This commit is contained in:
@ -29,6 +29,11 @@ bool NullGfx::IsHeadless() const
|
||||
return true;
|
||||
}
|
||||
|
||||
bool NullGfx::SupportsUtilityDrawing() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
std::unique_ptr<AbstractTexture> NullGfx::CreateTexture(const TextureConfig& config,
|
||||
[[maybe_unused]] std::string_view name)
|
||||
{
|
||||
|
@ -15,6 +15,7 @@ public:
|
||||
~NullGfx() override;
|
||||
|
||||
bool IsHeadless() const override;
|
||||
virtual bool SupportsUtilityDrawing() const override;
|
||||
|
||||
std::unique_ptr<AbstractTexture> CreateTexture(const TextureConfig& config,
|
||||
std::string_view name) override;
|
||||
|
Reference in New Issue
Block a user