summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/convert.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-12-30video_core: Rewrite the texture cacheReinUsesLisp1-93/+0
The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage.The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage. This commit aims to address those issues.
2020-12-07video_core: Remove unnecessary enum class casting in logging messagesLioncash1-1/+1
fmt now automatically prints the numeric value of an enum class member by default, so we don't need to use casts any more. Reduces the line noise a bit.
2020-07-13video_core: Rearrange pixel format namesReinUsesLisp1-3/+3
Normalizes pixel format names to match Vulkan names. Previous to this commit pixel formats had no convention, leading to confusion and potential bugs.
2019-06-21texture_cache: General FixesFernando Sahmkow1-7/+7
Fixed ASTC mipmaps loading Fixed alignment on openGL upload/download Fixed Block Height Calculation Removed unalign_height
2019-04-06video_core/textures/convert: Replace include with a forward declarationLioncash1-0/+1
Avoids dragging in a direct dependency in a header.
2019-02-27gl_rasterizer_cache: Move format conversion to its own fileReinUsesLisp1-0/+92