summaryrefslogtreecommitdiff
path: root/src/video_core/textures/convert.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* video_core: Rewrite the texture cacheGravatar ReinUsesLisp2020-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 FixesGravatar Fernando Sahmkow2019-06-201-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 declarationGravatar Lioncash2019-04-061-1/+4
| | | | Avoids dragging in a direct dependency in a header.
* gl_rasterizer_cache: Move format conversion to its own fileGravatar ReinUsesLisp2019-02-261-0/+18