summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/image_view_base.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-10-06Implement X8_D24 formatKelebek11-0/+1
2023-06-17video_core: Only apply AF to 2D (array) image typesWollnashorn1-2/+7
2023-06-16video_core: Use sampler IDs instead pointers in the pipeline configWollnashorn1-1/+0
The previous approach of storing pointers returned by `GetGraphicsSampler`/`GetComputeSampler` caused UB, as these functions can cause reallocation of the sampler slot vector and therefore invalidate the pointers
2023-06-15video_core: Disable AF for non-color image formatsWollnashorn1-0/+9
2023-06-15video_core: Add per-image anisotropy heuristics (format & mip count)Wollnashorn1-0/+39
2023-05-07Texture cache: reverse inmediate flush changesFernando Sahmkow1-4/+1
2023-05-07Address feedback, add CR notice, etcFernando Sahmkow1-1/+2
2023-05-07Settings: add option to enable / disable reactive flushingFernando Sahmkow1-1/+2
2023-05-07GPU: Add Reactive flushingFernando Sahmkow1-2/+1
2023-05-06Log object names with debug renderer, add a GPU address to ImageViewsKelebek11-4/+4
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-11-16TextureCache: Fix Buffer Views Scaling.Fernando Sahmkow1-5/+6
2021-11-16texture_cache: Simplify image view queries and blacklistingReinUsesLisp1-1/+1
2021-07-23shader: Interact texture buffers with buffer cacheReinUsesLisp1-0/+9
2021-04-15common: Move settings to common from core.bunnei1-1/+1
- Removes a dependency on core and input_common from common.
2021-03-04texture_cache: Blacklist BGRA8 copies and views on OpenGLameerj1-1/+1
In order to force the BGRA8 conversion on Nvidia using OpenGL, we need to forbid texture copies and views with other formats. This commit also adds a boolean relating to this, as this needs to be done only for the OpenGL api, Vulkan must remain unchanged.
2021-01-04gl_texture_cache: Avoid format views on Intel and AMDReinUsesLisp1-1/+1
Intel and AMD proprietary drivers are incapable of rendering to texture views of different formats than the original texture. Avoid creating these at a cache level. This will consume more memory, emulating them with copies.
2020-12-30video_core: Rewrite the texture cacheReinUsesLisp1-0/+41
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.