diff options
| -rw-r--r-- | src/video_core/gpu.h | 2 | ||||
| -rw-r--r-- | src/video_core/gpu_asynch.h | 2 | ||||
| -rw-r--r-- | src/video_core/gpu_synch.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index 14a421cc1..56a203275 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h | |||
| @@ -123,7 +123,7 @@ class GPU { | |||
| 123 | public: | 123 | public: |
| 124 | explicit GPU(Core::System& system, VideoCore::RendererBase& renderer); | 124 | explicit GPU(Core::System& system, VideoCore::RendererBase& renderer); |
| 125 | 125 | ||
| 126 | ~GPU(); | 126 | virtual ~GPU(); |
| 127 | 127 | ||
| 128 | struct MethodCall { | 128 | struct MethodCall { |
| 129 | u32 method{}; | 129 | u32 method{}; |
diff --git a/src/video_core/gpu_asynch.h b/src/video_core/gpu_asynch.h index 58046f3e9..e6a807aba 100644 --- a/src/video_core/gpu_asynch.h +++ b/src/video_core/gpu_asynch.h | |||
| @@ -21,7 +21,7 @@ class ThreadManager; | |||
| 21 | class GPUAsynch : public Tegra::GPU { | 21 | class GPUAsynch : public Tegra::GPU { |
| 22 | public: | 22 | public: |
| 23 | explicit GPUAsynch(Core::System& system, VideoCore::RendererBase& renderer); | 23 | explicit GPUAsynch(Core::System& system, VideoCore::RendererBase& renderer); |
| 24 | ~GPUAsynch(); | 24 | ~GPUAsynch() override; |
| 25 | 25 | ||
| 26 | void PushGPUEntries(Tegra::CommandList&& entries) override; | 26 | void PushGPUEntries(Tegra::CommandList&& entries) override; |
| 27 | void SwapBuffers( | 27 | void SwapBuffers( |
diff --git a/src/video_core/gpu_synch.h b/src/video_core/gpu_synch.h index 658f683e2..7d5a241ff 100644 --- a/src/video_core/gpu_synch.h +++ b/src/video_core/gpu_synch.h | |||
| @@ -16,7 +16,7 @@ namespace VideoCommon { | |||
| 16 | class GPUSynch : public Tegra::GPU { | 16 | class GPUSynch : public Tegra::GPU { |
| 17 | public: | 17 | public: |
| 18 | explicit GPUSynch(Core::System& system, VideoCore::RendererBase& renderer); | 18 | explicit GPUSynch(Core::System& system, VideoCore::RendererBase& renderer); |
| 19 | ~GPUSynch(); | 19 | ~GPUSynch() override; |
| 20 | 20 | ||
| 21 | void PushGPUEntries(Tegra::CommandList&& entries) override; | 21 | void PushGPUEntries(Tegra::CommandList&& entries) override; |
| 22 | void SwapBuffers( | 22 | void SwapBuffers( |