diff options
| author | 2018-11-10 11:08:55 -0700 | |
|---|---|---|
| committer | 2018-11-10 11:08:55 -0700 | |
| commit | c21a6c6b37d7038d7cb726539ca83a506ba0ff61 (patch) | |
| tree | 6917dc7ac56a5888c9030d1c67b0fb2b6296ae2c /src | |
| parent | gl_resource_manager: Amend clang-format discrepancies (diff) | |
| parent | rasterizer_cache: Add missing virtual destructor to RasterizerCacheObject (diff) | |
| download | yuzu-c21a6c6b37d7038d7cb726539ca83a506ba0ff61.tar.gz yuzu-c21a6c6b37d7038d7cb726539ca83a506ba0ff61.tar.xz yuzu-c21a6c6b37d7038d7cb726539ca83a506ba0ff61.zip | |
Merge pull request #1661 from lioncash/dtor
rasterizer_cache: Add missing virtual destructor to RasterizerCacheObject
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | src/video_core/rasterizer_cache.cpp | 7 | ||||
| -rw-r--r-- | src/video_core/rasterizer_cache.h | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 0b1cc1290..a780215c1 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt | |||
| @@ -21,6 +21,7 @@ add_library(video_core STATIC | |||
| 21 | macro_interpreter.h | 21 | macro_interpreter.h |
| 22 | memory_manager.cpp | 22 | memory_manager.cpp |
| 23 | memory_manager.h | 23 | memory_manager.h |
| 24 | rasterizer_cache.cpp | ||
| 24 | rasterizer_cache.h | 25 | rasterizer_cache.h |
| 25 | rasterizer_interface.h | 26 | rasterizer_interface.h |
| 26 | renderer_base.cpp | 27 | renderer_base.cpp |
diff --git a/src/video_core/rasterizer_cache.cpp b/src/video_core/rasterizer_cache.cpp new file mode 100644 index 000000000..093b2cdf4 --- /dev/null +++ b/src/video_core/rasterizer_cache.cpp | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | // Copyright 2018 yuzu Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "video_core/rasterizer_cache.h" | ||
| 6 | |||
| 7 | RasterizerCacheObject::~RasterizerCacheObject() = default; | ||
diff --git a/src/video_core/rasterizer_cache.h b/src/video_core/rasterizer_cache.h index 0a3b3951e..d999c92fa 100644 --- a/src/video_core/rasterizer_cache.h +++ b/src/video_core/rasterizer_cache.h | |||
| @@ -17,6 +17,8 @@ | |||
| 17 | 17 | ||
| 18 | class RasterizerCacheObject { | 18 | class RasterizerCacheObject { |
| 19 | public: | 19 | public: |
| 20 | virtual ~RasterizerCacheObject(); | ||
| 21 | |||
| 20 | /// Gets the address of the shader in guest memory, required for cache management | 22 | /// Gets the address of the shader in guest memory, required for cache management |
| 21 | virtual VAddr GetAddr() const = 0; | 23 | virtual VAddr GetAddr() const = 0; |
| 22 | 24 | ||