mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #1661 from lioncash/dtor
rasterizer_cache: Add missing virtual destructor to RasterizerCacheObject
This commit is contained in:
		
						commit
						c21a6c6b37
					
				@ -21,6 +21,7 @@ add_library(video_core STATIC
 | 
				
			|||||||
    macro_interpreter.h
 | 
					    macro_interpreter.h
 | 
				
			||||||
    memory_manager.cpp
 | 
					    memory_manager.cpp
 | 
				
			||||||
    memory_manager.h
 | 
					    memory_manager.h
 | 
				
			||||||
 | 
					    rasterizer_cache.cpp
 | 
				
			||||||
    rasterizer_cache.h
 | 
					    rasterizer_cache.h
 | 
				
			||||||
    rasterizer_interface.h
 | 
					    rasterizer_interface.h
 | 
				
			||||||
    renderer_base.cpp
 | 
					    renderer_base.cpp
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										7
									
								
								src/video_core/rasterizer_cache.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								src/video_core/rasterizer_cache.cpp
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,7 @@
 | 
				
			|||||||
 | 
					// Copyright 2018 yuzu Emulator Project
 | 
				
			||||||
 | 
					// Licensed under GPLv2 or any later version
 | 
				
			||||||
 | 
					// Refer to the license.txt file included.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "video_core/rasterizer_cache.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					RasterizerCacheObject::~RasterizerCacheObject() = default;
 | 
				
			||||||
@ -17,6 +17,8 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
class RasterizerCacheObject {
 | 
					class RasterizerCacheObject {
 | 
				
			||||||
public:
 | 
					public:
 | 
				
			||||||
 | 
					    virtual ~RasterizerCacheObject();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /// Gets the address of the shader in guest memory, required for cache management
 | 
					    /// Gets the address of the shader in guest memory, required for cache management
 | 
				
			||||||
    virtual VAddr GetAddr() const = 0;
 | 
					    virtual VAddr GetAddr() const = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user