diff options
| author | 2018-11-08 00:31:35 -0500 | |
|---|---|---|
| committer | 2018-11-08 00:31:39 -0500 | |
| commit | 9de523fd90f51136b04477c5a91896a9f0b93fb4 (patch) | |
| tree | 6917dc7ac56a5888c9030d1c67b0fb2b6296ae2c /src/video_core/rasterizer_cache.cpp | |
| parent | gl_resource_manager: Amend clang-format discrepancies (diff) | |
| download | yuzu-9de523fd90f51136b04477c5a91896a9f0b93fb4.tar.gz yuzu-9de523fd90f51136b04477c5a91896a9f0b93fb4.tar.xz yuzu-9de523fd90f51136b04477c5a91896a9f0b93fb4.zip | |
rasterizer_cache: Add missing virtual destructor to RasterizerCacheObject
Ensures that destruction will always do the right thing in any context.
Diffstat (limited to 'src/video_core/rasterizer_cache.cpp')
| -rw-r--r-- | src/video_core/rasterizer_cache.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
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; | ||