summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_texture_cache.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-08-02vk_texture_cache: return VK_NULL_HANDLE for views of null imagesLiam1-0/+12
2022-06-27video_core: Replace VKScheduler with Schedulergerman771-2/+2
2022-06-14common: Change semantics of UNREACHABLE to unconditionally crashLiam1-12/+12
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.
2022-04-14video_core: implement formats for N64 emulationFernando Sahmkow1-7/+42
2022-03-25Garbage Collection: Final tuning.Fernando Sahmkow1-1/+1
2022-03-25Garbage Collection: Redesign the algorithm to do a better use of memory.Fernando Sahmkow1-0/+9
2022-03-24Vulkan: Use 3D helpers for MSAA scaling on NV drivers 510+ameerj1-2/+1
Nvidia Vulkan drivers 510+ crash when blitting MSAA images. Fall-back to 3D scale helpers for MSAA image scaling.
2022-03-18vk_texture_cache: Do not reinterpret DepthStencil source imagesameerj1-5/+0
Fixes star pointer interactions in Super Mario Galaxy on some drivers, notably Nvidia. Co-Authored-By: Fernando S. <1731197+fernandos27@users.noreply.github.com>
2022-03-16Vulkan: convert S8D24 <-> ABGR8Liam1-2/+4
2022-03-11TextureCacheRuntime: allow converting D24S8 to ABGR8Liam1-1/+2
I can't see how this would be useful, but Galaxy uses it.
2022-02-21vulkan_device: fix missing format in ANVvoidanix1-2/+4
Currently Mesa's ANV driver does not support VK_FORMAT_B5G6R5_UNORM_PACK16, implement an alternative for it.
2021-12-24vk_texture_cache: Use 3D scale helpers for MSAA texture scaling on Intel Windows driversameerj1-18/+21
Fixes a crash when scaling MSAA textures in titles such as Sonic Colors Ultimate.
2021-12-24vk_texture_cache: Fix invalidated pointer accessameerj1-4/+11
The vulkan ImageView held a reference to its source image for rescale status checking. This pointer is sometimes invalidated when the texture cache slot_images container is resized. To avoid an invalid pointer dereference, the ImageView now holds a reference to the container itself.
2021-12-05vk_texture_cache: Add ABGR src format check for D24S8 conversionsameerj1-1/+5
2021-12-05blit_image: Refactor upscale factors usageameerj1-11/+7
The image view itself can be queried to see if it is being rescaled or not, removing the need to pass the upscale/down shift factors from the texture cache.
2021-12-05vk_texture_cache: Add a function to ImageView to check if src image is rescaledameerj1-4/+16
2021-12-05Revert "Merge pull request #7395 from Morph1984/resolve-comments"ameerj1-3/+3
This reverts commit d20f91da11fe7c5d5f1bd4f63cc3b4d221be67a4, reversing changes made to 5082712b4e44ebfe48bd587ea2fa38767b7339cb.
2021-11-22Texture Cache: Always copy on NVIDIA.Fernando Sahmkow1-0/+5
2021-11-22TextureCache: Simplify blitting of D24S8 formats and fix bugs.Fernando Sahmkow1-21/+9
2021-11-21VulkanTexturECache: Use reinterpret on D32_S8 formats.Fernando Sahmkow1-2/+7
2021-11-21vk_texture_cache: Mark VkBufferUsageFlags as static constexprMorph1-3/+3
2021-11-20TextureCache: Refactor and fix linux compiling.Fernando Sahmkow1-5/+2
2021-11-20TextureCache: Implement buffer copies on Vulkan.Fernando Sahmkow1-0/+174
2021-11-20TextureCache: Add R16G16 to D24S8 converter.Fernando Sahmkow1-0/+3
2021-11-19TextureCache: Add B10G11R11 to D24S8 converter.Fernando Sahmkow1-0/+3
2021-11-19TextureCache: Implement additional D24S8 convertions.Fernando Sahmkow1-0/+10
2021-11-19Vulkan: implement D24S8 <-> RGBA8 convertions.Fernando Sahmkow1-0/+12
2021-11-18renderer_vulkan: Implement S8_UINT stencil formatMorph1-0/+5
It should be noted that on Windows, only nvidia gpus support this format natively as of this commit.
2021-11-17TextureCache: Fix OGL cleaningFernando Sahmkow1-0/+4
2021-11-16TextureCache: Add automatic anisotropic filtering and refactor code.Fernando Sahmkow1-7/+1
2021-11-16TextureCache: Make a better Anisotropic setter.Fernando Sahmkow1-1/+8
2021-11-16Vulkan: fix regression.FernandoS271-14/+17
2021-11-16vk_texture_cache: Refactor 3D scaling helpersameerj1-113/+72
2021-11-16Video Core: fix building for GCC.Fernando Sahmkow1-2/+0
2021-11-16Texture cache: fix Intel with rescaler.FernandoS271-2/+2
2021-11-16TextureCache: Fix blitting filter in Vulkan and correct viewport/scissor calculation when downscaling.FernandoS271-15/+25
2021-11-16Texture Cache: fix memory managment and optimize scaled downloads, uploads.Fernando Sahmkow1-4/+19
2021-11-16Texture Cache: Fix downscaling and correct memory comsumption.Fernando Sahmkow1-10/+83
2021-11-16Texture Cache: Rescale conversions between depth and colorFernandoS271-5/+8
2021-11-16Texture cache: Fix memory consumption and ignore rating when a depth texture is rendered.Fernando Sahmkow1-2/+7
2021-11-16vk_texture_cache: Use 3D to scale images when blit is unsupportedameerj1-25/+75
2021-11-16vk_texture_cache: Fix BlitScale of non-2D imagesameerj1-10/+9
2021-11-16video_core: Refactor resolution scale functionameerj1-13/+6
2021-11-16vk_texture_cache: Fix unsupported blit format error checkingameerj1-5/+5
2021-11-16vk_texture_cache: Fix early returns on unsupported scalesameerj1-18/+10
2021-11-16video_core: Misc resolution scaling related refactoringameerj1-13/+18
2021-11-16Texture Cache: Fix Rescaling on MultisampleFernando Sahmkow1-2/+6
2021-11-16vk_texture_cache: Simplify scaled image managementameerj1-87/+24
2021-11-16vk_texture_cache: Use nearest neighbor scaling when availableameerj1-2/+7
2021-11-16vk_texture_cache: Minor cleanupameerj1-10/+8
2021-11-16Texture Cache: fix scaling on upload and stop scaling on base resolution.Fernando Sahmkow1-14/+32
2021-11-16texture_cache: Simplify image view queries and blacklistingReinUsesLisp1-7/+15
2021-11-16Vulkan: Fix downscaling Blit.Fernando Sahmkow1-14/+18
2021-11-16vk_texture_cache: Properly scale blit source imagesReinUsesLisp1-2/+2
2021-11-16vk_texture_cache: Simplify and optimize scaling blitsReinUsesLisp1-106/+62
2021-11-16vk_texture_cache: Fix scaling blit validation errorsReinUsesLisp1-81/+78
2021-11-16Fix blits with mipsReinUsesLisp1-12/+16
2021-11-16Fix blitsReinUsesLisp1-10/+10
2021-11-16TextureCache: Fix rescaling of ImageCopiesFernando Sahmkow1-13/+27
2021-11-16Texture Cache: More rescaling fixes.Fernando Sahmkow1-0/+8
2021-11-16Texture Cache: Implement Vulkan UpScaling & DownScalingFernando Sahmkow1-22/+237
2021-11-16VideoCore: Initial Setup for the Resolution Scaler.Fernando Sahmkow1-15/+66
2021-10-03gpu: Migrate implementation to the cpp fileameerj1-0/+1
2021-09-24vk_texture_cache: Disable cube compatibility flag on non-mesa AMD GCN4 and earlierameerj1-1/+1
Fixes rainbow textures on BOTW.
2021-08-21vk_rasterizer: Only clear depth and stencil buffers when set in attachment aspect maskameerj1-1/+4
Silences validation errors for clearing the depth/stencil buffers of framebuffer attachments that were not specified to have depth/stencil usage.
2021-08-07texture_cache: Address ameerj's reviewyzct123451-0/+2
2021-08-05texture_cache: Don't change copyright yearyzct123451-1/+1
2021-08-05texture_cache: Split templates outyzct123451-1/+1
2021-07-23shader: Implement SULD and SUSTReinUsesLisp1-22/+90
2021-07-23shader_recompiler,video_core: Cleanup some GCC and Clang errorslat9nq1-1/+1
Mostly fixing unused *, implicit conversion, braced scalar init, fpermissive, and some others. Some Clang errors likely remain in video_core, and std::ranges is still a pertinent issue in shader_recompiler shader_recompiler: cmake: Force bracket depth to 1024 on Clang Increases the maximum fold expression depth thread_worker: Include condition_variable Don't use list initializers in control flow Co-authored-by: ReinUsesLisp <reinuseslisp@airmail.cc>
2021-07-23shader: Interact texture buffers with buffer cacheReinUsesLisp1-53/+10
2021-07-23shader: Add partial rasterizer integrationReinUsesLisp1-64/+4
2021-07-20vk_texture_cache: Use VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL when possibleReinUsesLisp1-21/+35
Silences performance warnings generated from validation layers on each frame.
2021-07-19Update src/video_core/renderer_vulkan/vk_texture_cache.cppyzct123451-1/+1
Co-authored-by: Vitor K <vitor-kiguchi@hotmail.com>
2021-07-19Update src/video_core/renderer_vulkan/vk_texture_cache.cppyzct123451-1/+1
Co-authored-by: Vitor K <vitor-kiguchi@hotmail.com>
2021-07-18Ignore wrong blit formatyzct123451-1/+4
2021-07-18vk_texture_cache: Finalize renderpass when downloading imagesReinUsesLisp1-0/+1
2021-06-20Reaper: Guarantee correct deletion.Fernando Sahmkow1-0/+2
2021-06-17Reaper: Change memory restrictions on TC depending on host memory on VK.Fernando Sahmkow1-0/+4
2021-06-16configure_graphics: Add Accelerate ASTC decoding settingameerj1-1/+6
2021-05-08texture_cache: Handle out of bound texture blitsameerj1-20/+18
Some games interleave a texture blit using regions which are out-of-bounds. This addresses the interleaving to avoid oob reads from the src texture.
2021-04-25vk_texture_cache: Swap R and B channels of color flipped formatameerj1-1/+24
Swaps the Red and Blue channels of the A1B5G5R5_UNORM texture format, which was being incorrectly rendered.
2021-04-12vk_texture_cache: Make use of Common::BitCast where applicableLioncash1-5/+6
Also clarify the TODO comment a little more on the lacking implementations for std::bit_cast.
2021-03-13astc_decoder: Reimplement LayersRodrigo Locatti1-21/+25
Reimplements the approach to decoding layers in the compute shader. Fixes multilayer astc decoding when using Vulkan.
2021-03-13renderer_vulkan: Accelerate ASTC decodingameerj1-4/+41
Co-Authored-By: Rodrigo Locatti <reinuseslisp@airmail.cc>
2021-02-13vk_staging_buffer_pool: Add stream buffer for small uploadsReinUsesLisp1-8/+6
This uses a ring buffer similar to OpenGL's stream buffer for small uploads. This stops us from allocating several small buffers, reducing memory fragmentation and cache locality. It uses dedicated allocations when possible.
2021-02-13video_core: Reimplement the buffer cacheReinUsesLisp1-48/+83
Reimplement the buffer cache using cached bindings and page level granularity for modification tracking. This also drops the usage of shared pointers and virtual functions from the cache. - Bindings are cached, allowing to skip work when the game changes few bits between draws. - OpenGL Assembly shaders no longer copy when a region has been modified from the GPU to emulate constant buffers, instead GL_EXT_memory_object is used to alias sub-buffers within the same allocation. - OpenGL Assembly shaders stream constant buffer data using glProgramBufferParametersIuivNV, from NV_parameter_buffer_object. In theory this should save one hash table resolve inside the driver compared to glBufferSubData. - A new OpenGL stream buffer is implemented based on fences for drivers that are not Nvidia's proprietary, due to their low performance on partial glBufferSubData calls synchronized with 3D rendering (that some games use a lot). - Most optimizations are shared between APIs now, allowing Vulkan to cache more bindings than before, skipping unnecesarry work. This commit adds the necessary infrastructure to use Vulkan object from OpenGL. Overall, it improves performance and fixes some bugs present on the old cache. There are still some edge cases hit by some games that harm performance on some vendors, this are planned to be fixed in later commits.
2021-01-24vk_texture_cache: Support image store on sRGB images with VkImageViewUsageCreateInfoReinUsesLisp1-26/+47
Vulkan 1.0 didn't support creating sRGB image views on an ABGR8 VkImage with storage usage bits. VK_KHR_maintenance2 addressed this allowing to reduce the usage bits on a VkImageView. To allow image store on non-sRGB image views when the VkImage is created with sRGB, always create VkImages without sRGB and add the sRGB format on the view.
2021-01-15vk_texture_cache: Use Download memory types for texture flushesReinUsesLisp1-1/+9
Use the Download memory type where it matters.
2021-01-15vulkan_memory_allocator: Add "download" memory usage hintReinUsesLisp1-3/+3
Allow users of the allocator to hint memory usage for downloads. This removes the non-descriptive boolean passed for "host visible" or not host visible memory commits, and uses an enum to hint device local, upload and download usages.
2021-01-15vulkan_common: Move allocator to the common directoryReinUsesLisp1-1/+1
Allow using the abstraction from the OpenGL backend.
2021-01-15renderer_vulkan: Rename Vulkan memory manager to memory allocatorReinUsesLisp1-2/+2
"Memory manager" collides with the guest GPU memory manager, and a memory allocator sounds closer to what the abstraction aims to be.
2021-01-15vk_memory_manager: Improve memory manager and its APIReinUsesLisp1-3/+3
Fix a bug where the memory allocator could leave gaps between commits. To fix this the allocation algorithm was reworked, although it's still short in number of lines of code. Rework the allocation API to self-contained movable objects instead of naively using an unique_ptr to do the job for us. Remove the VK prefix.
2021-01-04renderer_vulkan: Move device abstraction to vulkan_commonReinUsesLisp1-1/+3
2021-01-03renderer_vulkan: Rename VKDevice to DeviceReinUsesLisp1-4/+4
The "VK" prefix predates the "Vulkan" namespace. It was carried around the codebase for consistency. "VKDevice" currently is a bad alias with "VkDevice" (only an upcase character of difference) that can cause confusion. Rename all instances of it.
2020-12-31vulkan_common: Rename renderer_vulkan/wrapper.h to vulkan_common/vulkan_wrapper.hReinUsesLisp1-1/+1
Allows sharing Vulkan wrapper code between different rendering backends.
2020-12-30video_core: Rewrite the texture cacheReinUsesLisp1-492/+981
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-2/+2
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-12-05video_core: Resolve more variable shadowing scenarios pt.3Lioncash1-4/+4
Cleans out the rest of the occurrences of variable shadowing and makes any further occurrences of shadowing compiler errors.
2020-12-05video_core: Resolve more variable shadowing scenarios pt.2Lioncash1-30/+31
Migrates the video core code closer to enabling variable shadowing warnings as errors. This primarily sorts out shadowing occurrences within the Vulkan code.
2020-09-19renderer_vulkan: Make unconditional use of VK_KHR_timeline_semaphoreReinUsesLisp1-11/+8
This reworks how host<->device synchronization works on the Vulkan backend. Instead of "protecting" resources with a fence and signalling these as free when the fence is known to be signalled by the host GPU, use timeline semaphores. Vulkan timeline semaphores allow use to work on a subset of D3D12 fences. As far as we are concerned, timeline semaphores are a value set by the host or the device that can be waited by either of them. Taking advantange of this, we can have a monolithically increasing atomic value for each submission to the graphics queue. Instead of protecting resources with a fence, we simply store the current logical tick (the atomic value stored in CPU memory). When we want to know if a resource is free, it can be compared to the current GPU tick. This greatly simplifies resource management code and the free status of resources should have less false negatives. To workaround bugs in validation layers, when these are attached there's a thread waiting for timeline semaphores.
2020-09-06video_core: Remove all Core::System references in rendererReinUsesLisp1-16/+18
Now that the GPU is initialized when video backends are initialized, it's no longer needed to query components once the game is running: it can be done when yuzu is booting. This allows us to pass components between constructors and in the process remove all Core::System references in the video backend.
2020-08-03vulkan: Silence more -Wmissing-field-initializer warningsLioncash1-0/+2
2020-07-25vulkan: Resolve -Wmissing-field-initializer warningsLioncash1-0/+2
2020-07-17vk_texture_cache: Make use of designated initializers where applicableLioncash1-96/+135
2020-07-17vk_texture_cache: Amend mismatched access masks and indices in UploadBufferLioncash1-6/+4
Discovered while converting relevant parts of the codebase over to designated initializers.
2020-07-13video_core: Rearrange pixel format namesReinUsesLisp1-5/+5
Normalizes pixel format names to match Vulkan names. Previous to this commit pixel formats had no convention, leading to confusion and potential bugs.
2020-06-08texture_cache: Implement rendering to 3D texturesReinUsesLisp1-14/+62
This allows rendering to 3D textures with more than one slice. Applications are allowed to render to more than one slice of a texture using gl_Layer from a VTG shader. This also requires reworking how 3D texture collisions are handled, for now, this commit allows rendering to slices but not to miplevels. When a render target attempts to write to a mipmap, we fallback to the previous implementation (copying or flushing as needed). - Fixes color correction 3D textures on UE4 games (rainbow effects). - Allows Xenoblade games to render to 3D textures directly.
2020-06-02vk_rasterizer: Implement storage texelsReinUsesLisp1-2/+2
This is the equivalent of an image buffer on OpenGL. - Used by Octopath Traveler
2020-05-26texture_cache: Implement depth stencil texture swizzlesReinUsesLisp1-16/+13
Stop ignoring image swizzles on depth and stencil images. This doesn't fix a known issue on Xenoblade Chronicles 2 where an OpenGL texture changes swizzles twice before being used. A proper fix would be having a small texture view cache for this like we do on Vulkan.
2020-04-29vulkan: Remove unnecessary includesLioncash1-3/+0
Reduces some header churn and reduces rebuilds when some header internals change. While we're at it we can also resolve a missing include in buffer_cache.
2020-04-11renderer_vulkan: Drop Vulkan-HppReinUsesLisp1-152/+210
2020-04-01video_core: Use native ASTC when availableReinUsesLisp1-17/+17
2020-03-19vk_texture_cache: Silence misc warningsReinUsesLisp1-3/+3
2020-02-28vk_state_tracker: Initial implementationReinUsesLisp1-0/+1
Add support for render targets and viewports.
2020-01-16vk_texture_cache: Address feedbackReinUsesLisp1-13/+4
2020-01-16vk_texture_cache: Fix typo in commentaryRodrigo Locatti1-1/+1
Co-Authored-By: MysticExile <30736337+MysticExile@users.noreply.github.com>
2020-01-14vk_texture_cache: Implement generic texture cache on VulkanReinUsesLisp1-0/+484
It currently ignores PBO linearizations since these should be dropped as soon as possible on OpenGL.