diff options
author | bunnei <bunneidev@gmail.com> | 2021-04-14 04:59:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-14 04:59:10 +0200 |
commit | 8146c8c5e72e9ace00c91970b46baee5ef03bd72 (patch) | |
tree | be673e0485d318908b1f799706f1aa94b5092668 /src | |
parent | Merge pull request #6190 from lioncash/constfn2 (diff) | |
parent | engine_interface: Add missing virtual destructor (diff) | |
download | yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.gz yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.bz2 yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.lz yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.xz yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.tar.zst yuzu-8146c8c5e72e9ace00c91970b46baee5ef03bd72.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/engines/engine_interface.h | 3 | ||||
-rw-r--r-- | src/video_core/engines/fermi_2d.h | 2 | ||||
-rw-r--r-- | src/video_core/engines/kepler_memory.h | 2 | ||||
-rw-r--r-- | src/video_core/engines/maxwell_dma.h | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/src/video_core/engines/engine_interface.h b/src/video_core/engines/engine_interface.h index 18a9db7e6..c7ffd68c5 100644 --- a/src/video_core/engines/engine_interface.h +++ b/src/video_core/engines/engine_interface.h @@ -4,13 +4,14 @@ #pragma once -#include <type_traits> #include "common/common_types.h" namespace Tegra::Engines { class EngineInterface { public: + virtual ~EngineInterface() = default; + /// Write the value to the register identified by method. virtual void CallMethod(u32 method, u32 method_argument, bool is_last_call) = 0; diff --git a/src/video_core/engines/fermi_2d.h b/src/video_core/engines/fermi_2d.h index c808a577d..a4170ffff 100644 --- a/src/video_core/engines/fermi_2d.h +++ b/src/video_core/engines/fermi_2d.h @@ -35,7 +35,7 @@ namespace Tegra::Engines { class Fermi2D final : public EngineInterface { public: explicit Fermi2D(); - ~Fermi2D(); + ~Fermi2D() override; /// Binds a rasterizer to this engine. void BindRasterizer(VideoCore::RasterizerInterface* rasterizer); diff --git a/src/video_core/engines/kepler_memory.h b/src/video_core/engines/kepler_memory.h index 19808a5c6..0d8ea09a9 100644 --- a/src/video_core/engines/kepler_memory.h +++ b/src/video_core/engines/kepler_memory.h @@ -36,7 +36,7 @@ namespace Tegra::Engines { class KeplerMemory final : public EngineInterface { public: explicit KeplerMemory(Core::System& system_, MemoryManager& memory_manager); - ~KeplerMemory(); + ~KeplerMemory() override; /// Write the value to the register identified by method. void CallMethod(u32 method, u32 method_argument, bool is_last_call) override; diff --git a/src/video_core/engines/maxwell_dma.h b/src/video_core/engines/maxwell_dma.h index 3c59eeb13..c77f02a22 100644 --- a/src/video_core/engines/maxwell_dma.h +++ b/src/video_core/engines/maxwell_dma.h @@ -188,7 +188,7 @@ public: static_assert(sizeof(RemapConst) == 12); explicit MaxwellDMA(Core::System& system_, MemoryManager& memory_manager_); - ~MaxwellDMA(); + ~MaxwellDMA() override; /// Write the value to the register identified by method. void CallMethod(u32 method, u32 method_argument, bool is_last_call) override; |