mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 10:44:49 +01:00 
			
		
		
		
	Merge pull request #12261 from liamwhite/fruit-company
texture_cache: use pedantic type names
This commit is contained in:
		
						commit
						69529a748c
					
				| @ -1439,7 +1439,7 @@ void Image::UploadMemory(const StagingBufferRef& map, std::span<const BufferImag | ||||
|     UploadMemory(map.buffer, map.offset, copies); | ||||
| } | ||||
| 
 | ||||
| void Image::DownloadMemory(VkBuffer buffer, VkDeviceSize offset, | ||||
| void Image::DownloadMemory(VkBuffer buffer, size_t offset, | ||||
|                            std::span<const VideoCommon::BufferImageCopy> copies) { | ||||
|     std::array buffer_handles{ | ||||
|         buffer, | ||||
| @ -1450,7 +1450,7 @@ void Image::DownloadMemory(VkBuffer buffer, VkDeviceSize offset, | ||||
|     DownloadMemory(buffer_handles, buffer_offsets, copies); | ||||
| } | ||||
| 
 | ||||
| void Image::DownloadMemory(std::span<VkBuffer> buffers_span, std::span<VkDeviceSize> offsets_span, | ||||
| void Image::DownloadMemory(std::span<VkBuffer> buffers_span, std::span<size_t> offsets_span, | ||||
|                            std::span<const VideoCommon::BufferImageCopy> copies) { | ||||
|     const bool is_rescaled = True(flags & ImageFlagBits::Rescaled); | ||||
|     if (is_rescaled) { | ||||
| @ -1530,7 +1530,7 @@ void Image::DownloadMemory(const StagingBufferRef& map, std::span<const BufferIm | ||||
|         map.buffer, | ||||
|     }; | ||||
|     std::array offsets{ | ||||
|         map.offset, | ||||
|         static_cast<size_t>(map.offset), | ||||
|     }; | ||||
|     DownloadMemory(buffers, offsets, copies); | ||||
| } | ||||
|  | ||||
| @ -147,10 +147,10 @@ public: | ||||
|     void UploadMemory(const StagingBufferRef& map, | ||||
|                       std::span<const VideoCommon::BufferImageCopy> copies); | ||||
| 
 | ||||
|     void DownloadMemory(VkBuffer buffer, VkDeviceSize offset, | ||||
|     void DownloadMemory(VkBuffer buffer, size_t offset, | ||||
|                         std::span<const VideoCommon::BufferImageCopy> copies); | ||||
| 
 | ||||
|     void DownloadMemory(std::span<VkBuffer> buffers, std::span<VkDeviceSize> offsets, | ||||
|     void DownloadMemory(std::span<VkBuffer> buffers, std::span<size_t> offsets, | ||||
|                         std::span<const VideoCommon::BufferImageCopy> copies); | ||||
| 
 | ||||
|     void DownloadMemory(const StagingBufferRef& map, | ||||
|  | ||||
| @ -995,7 +995,7 @@ void TextureCache<P>::DownloadImageIntoBuffer(typename TextureCache<P>::Image* i | ||||
|             buffer, | ||||
|             download_map.buffer, | ||||
|         }; | ||||
|         std::array<u64, 2> buffer_offsets{ | ||||
|         std::array<size_t, 2> buffer_offsets{ | ||||
|             buffer_offset, | ||||
|             download_map.offset, | ||||
|         }; | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user