mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 15:01:16 +01:00
Merge pull request #12411 from lioncash/build
Software/SWGfx: Default destructor in cpp file
This commit is contained in:
commit
3f06d32dcd
@ -22,6 +22,8 @@ SWGfx::SWGfx(std::unique_ptr<SWOGLWindow> window) : m_window(std::move(window))
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SWGfx::~SWGfx() = default;
|
||||||
|
|
||||||
bool SWGfx::IsHeadless() const
|
bool SWGfx::IsHeadless() const
|
||||||
{
|
{
|
||||||
return m_window->IsHeadless();
|
return m_window->IsHeadless();
|
||||||
|
@ -12,7 +12,8 @@ namespace SW
|
|||||||
class SWGfx final : public AbstractGfx
|
class SWGfx final : public AbstractGfx
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SWGfx(std::unique_ptr<SWOGLWindow> window);
|
explicit SWGfx(std::unique_ptr<SWOGLWindow> window);
|
||||||
|
~SWGfx() override;
|
||||||
|
|
||||||
bool IsHeadless() const override;
|
bool IsHeadless() const override;
|
||||||
virtual bool SupportsUtilityDrawing() const override;
|
virtual bool SupportsUtilityDrawing() const override;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user