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 #2296 from lioncash/override
video_core: Add missing override specifiers
This commit is contained in:
		
						commit
						76f024865d
					
				@ -538,12 +538,12 @@ private:
 | 
			
		||||
        return nullptr;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void Register(const Surface& object) {
 | 
			
		||||
    void Register(const Surface& object) override {
 | 
			
		||||
        RasterizerCache<Surface>::Register(object);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /// Unregisters an object from the cache
 | 
			
		||||
    void Unregister(const Surface& object) {
 | 
			
		||||
    void Unregister(const Surface& object) override {
 | 
			
		||||
        if (object->IsReinterpreted()) {
 | 
			
		||||
            auto interval = GetReinterpretInterval(object);
 | 
			
		||||
            reinterpreted_surfaces.erase(interval);
 | 
			
		||||
 | 
			
		||||
@ -21,7 +21,7 @@ public:
 | 
			
		||||
    CommandBufferPool(const VKDevice& device)
 | 
			
		||||
        : VKFencedPool(COMMAND_BUFFER_POOL_SIZE), device{device} {}
 | 
			
		||||
 | 
			
		||||
    void Allocate(std::size_t begin, std::size_t end) {
 | 
			
		||||
    void Allocate(std::size_t begin, std::size_t end) override {
 | 
			
		||||
        const auto dev = device.GetLogical();
 | 
			
		||||
        const auto& dld = device.GetDispatchLoader();
 | 
			
		||||
        const u32 graphics_family = device.GetGraphicsFamily();
 | 
			
		||||
 | 
			
		||||
@ -97,7 +97,7 @@ private:
 | 
			
		||||
class VKFenceWatch final : public VKResource {
 | 
			
		||||
public:
 | 
			
		||||
    explicit VKFenceWatch();
 | 
			
		||||
    ~VKFenceWatch();
 | 
			
		||||
    ~VKFenceWatch() override;
 | 
			
		||||
 | 
			
		||||
    /// Waits for the fence to be released.
 | 
			
		||||
    void Wait();
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user