summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/convert.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* video_core: Rewrite the texture cacheReinUsesLisp2020-12-301-22/+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.
* texture_cache: General FixesFernando Sahmkow2019-06-211-3/+4
| | | | | | | 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 declarationLioncash2019-04-061-1/+4
| | | | Avoids dragging in a direct dependency in a header.
* gl_rasterizer_cache: Move format conversion to its own fileReinUsesLisp2019-02-271-0/+18