summaryrefslogtreecommitdiff
path: root/src/video_core/textures/convert.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* video_core: Rewrite the texture cacheGravatar ReinUsesLisp2020-12-301-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.
* video_core: Remove unnecessary enum class casting in logging messagesGravatar Lioncash2020-12-071-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.
* video_core: Rearrange pixel format namesGravatar ReinUsesLisp2020-07-131-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.
* texture_cache: General FixesGravatar Fernando Sahmkow2019-06-201-7/+7
| | | | | | | Fixed ASTC mipmaps loading Fixed alignment on openGL upload/download Fixed Block Height Calculation Removed unalign_height
* video_core/textures/convert: Replace include with a forward declarationGravatar Lioncash2019-04-061-0/+1
| | | | Avoids dragging in a direct dependency in a header.
* gl_rasterizer_cache: Move format conversion to its own fileGravatar ReinUsesLisp2019-02-261-0/+92