mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Buffer Cache: Adress Feedback.
This commit is contained in:
		
				
					committed by
					
						
						FernandoS27
					
				
			
			
				
	
			
			
			
						parent
						
							6ce2c85047
						
					
				
				
					commit
					83ec2091c1
				
			@@ -19,8 +19,8 @@ public:
 | 
			
		||||
        return (cache_addr < end) && (cache_addr_end > start);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    bool IsInside(const CacheAddr other_start, const CacheAddr other_end) {
 | 
			
		||||
        return (cache_addr <= other_start && other_end <= cache_addr_end);
 | 
			
		||||
    bool IsInside(const CacheAddr other_start, const CacheAddr other_end) const {
 | 
			
		||||
        return cache_addr <= other_start && other_end <= cache_addr_end;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    u8* GetWritableHostPtr() const {
 | 
			
		||||
@@ -61,8 +61,7 @@ public:
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
protected:
 | 
			
		||||
    explicit BufferBlock(CacheAddr cache_addr,const std::size_t size)
 | 
			
		||||
        : size{size} {
 | 
			
		||||
    explicit BufferBlock(CacheAddr cache_addr, const std::size_t size) : size{size} {
 | 
			
		||||
        SetCacheAddr(cache_addr);
 | 
			
		||||
    }
 | 
			
		||||
    ~BufferBlock() = default;
 | 
			
		||||
 
 | 
			
		||||
@@ -54,13 +54,13 @@ protected:
 | 
			
		||||
    const GLuint* ToHandle(const Buffer& buffer) override;
 | 
			
		||||
 | 
			
		||||
    void UploadBlockData(const Buffer& buffer, std::size_t offset, std::size_t size,
 | 
			
		||||
                          const u8* data) override;
 | 
			
		||||
                         const u8* data) override;
 | 
			
		||||
 | 
			
		||||
    void DownloadBlockData(const Buffer& buffer, std::size_t offset, std::size_t size,
 | 
			
		||||
                            u8* data) override;
 | 
			
		||||
                           u8* data) override;
 | 
			
		||||
 | 
			
		||||
    void CopyBlock(const Buffer& src, const Buffer& dst, std::size_t src_offset,
 | 
			
		||||
                        std::size_t dst_offset, std::size_t size) override;
 | 
			
		||||
                   std::size_t dst_offset, std::size_t size) override;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
} // namespace OpenGL
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user