summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/vk_texture_cache.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add break for default casesKyle Kienapfel2022-11-141-0/+1
| | | | | | | | | | | Visual Studio has an option to search all files in a solution, so I did a search in there for "default:" looking for any missing break statements. I've left out default statements that return something, and that throw something, even if via ThrowInvalidType. UNREACHABLE leads towards throw R_THROW macro leads towards a return
* Merge pull request #9097 from liamwhite/intel-spv-compilerMorph2022-11-041-5/+10
|\ | | | | video_core: don't build ASTC decoder shader unless requested
| * video_core: don't build ASTC decoder shader unless requestedLiam2022-10-201-5/+10
| |
* | Vulkan: Fix regression caused by limiting render area to width/height of rendef targets.Fernando Sahmkow2022-10-301-6/+6
|/
* Vulkan Texture Cache: Limit render area to the max width/height of the targets.Fernando Sahmkow2022-10-061-7/+23
|
* VideoCore: Implement formats needed for N64 emulation.Fernando Sahmkow2022-10-061-1/+1
|
* video_code: support rectangle textureFengChen2022-08-251-6/+3
|
* vk_texture_cache: return VK_NULL_HANDLE for views of null imagesLiam2022-08-021-0/+12
|
* video_core: Replace VKScheduler with Schedulergerman772022-06-271-2/+2
|
* common: Change semantics of UNREACHABLE to unconditionally crashLiam2022-06-141-12/+12
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-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.
* video_core: implement formats for N64 emulationFernando Sahmkow2022-04-141-7/+42
|
* Merge pull request #8076 from ameerj/nv-vk-msaa-scalebunnei2022-03-311-2/+1
|\ | | | | Vulkan: Use 3D helpers for MSAA scaling on NV drivers 510+
| * Vulkan: Use 3D helpers for MSAA scaling on NV drivers 510+ameerj2022-03-241-2/+1
| | | | | | | | Nvidia Vulkan drivers 510+ crash when blitting MSAA images. Fall-back to 3D scale helpers for MSAA image scaling.
* | Garbage Collection: Final tuning.Fernando Sahmkow2022-03-251-1/+1
| |
* | Garbage Collection: Redesign the algorithm to do a better use of memory.Fernando Sahmkow2022-03-251-0/+9
|/
* vk_texture_cache: Do not reinterpret DepthStencil source imagesameerj2022-03-181-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>
* Vulkan: convert S8D24 <-> ABGR8Liam2022-03-161-2/+4
|
* TextureCacheRuntime: allow converting D24S8 to ABGR8Liam2022-03-111-1/+2
| | | | I can't see how this would be useful, but Galaxy uses it.
* vulkan_device: fix missing format in ANVvoidanix2022-02-211-2/+4
| | | | | Currently Mesa's ANV driver does not support VK_FORMAT_B5G6R5_UNORM_PACK16, implement an alternative for it.
* Merge pull request #7624 from ameerj/intel-msaa-scaleFernando S2022-01-031-18/+21
|\ | | | | vk_texture_cache: Use 3D scale helpers for MSAA texture scaling on Intel Windows drivers
| * vk_texture_cache: Use 3D scale helpers for MSAA texture scaling on Intel Windows driversameerj2021-12-241-18/+21
| | | | | | | | Fixes a crash when scaling MSAA textures in titles such as Sonic Colors Ultimate.
* | vk_texture_cache: Fix invalidated pointer accessameerj2021-12-241-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.
* vk_texture_cache: Add ABGR src format check for D24S8 conversionsameerj2021-12-051-1/+5
|
* blit_image: Refactor upscale factors usageameerj2021-12-051-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.
* vk_texture_cache: Add a function to ImageView to check if src image is rescaledameerj2021-12-051-4/+16
|
* Revert "Merge pull request #7395 from Morph1984/resolve-comments"ameerj2021-12-051-3/+3
| | | | | This reverts commit d20f91da11fe7c5d5f1bd4f63cc3b4d221be67a4, reversing changes made to 5082712b4e44ebfe48bd587ea2fa38767b7339cb.
* Merge pull request #7396 from FernandoS27/blit-this-mfFernando S2021-11-281-23/+21
|\ | | | | TextureCache: Eliminate format deduction as full depth conversion has been supported.
| * Texture Cache: Always copy on NVIDIA.Fernando Sahmkow2021-11-221-0/+5
| |
| * TextureCache: Simplify blitting of D24S8 formats and fix bugs.Fernando Sahmkow2021-11-221-21/+9
| |
| * VulkanTexturECache: Use reinterpret on D32_S8 formats.Fernando Sahmkow2021-11-211-2/+7
| |
* | vk_texture_cache: Mark VkBufferUsageFlags as static constexprMorph2021-11-211-3/+3
|/
* Merge pull request #7368 from FernandoS27/vulkan-convbunnei2021-11-211-0/+199
|\ | | | | Fix ART Blit detection regression and add D24S8 <-> RGBA8 conv to Vulkan
| * TextureCache: Refactor and fix linux compiling.Fernando Sahmkow2021-11-201-5/+2
| |
| * TextureCache: Implement buffer copies on Vulkan.Fernando Sahmkow2021-11-201-0/+174
| |
| * TextureCache: Add R16G16 to D24S8 converter.Fernando Sahmkow2021-11-201-0/+3
| |
| * TextureCache: Add B10G11R11 to D24S8 converter.Fernando Sahmkow2021-11-191-0/+3
| |
| * TextureCache: Implement additional D24S8 convertions.Fernando Sahmkow2021-11-191-0/+10
| |
| * Vulkan: implement D24S8 <-> RGBA8 convertions.Fernando Sahmkow2021-11-191-0/+12
| |
* | renderer_vulkan: Implement S8_UINT stencil formatMorph2021-11-181-0/+5
|/ | | | It should be noted that on Windows, only nvidia gpus support this format natively as of this commit.
* TextureCache: Fix OGL cleaningFernando Sahmkow2021-11-171-0/+4
|
* TextureCache: Add automatic anisotropic filtering and refactor code.Fernando Sahmkow2021-11-161-7/+1
|
* TextureCache: Make a better Anisotropic setter.Fernando Sahmkow2021-11-161-1/+8
|
* Vulkan: fix regression.FernandoS272021-11-161-14/+17
|
* vk_texture_cache: Refactor 3D scaling helpersameerj2021-11-161-113/+72
|
* Video Core: fix building for GCC.Fernando Sahmkow2021-11-161-2/+0
|
* Texture cache: fix Intel with rescaler.FernandoS272021-11-161-2/+2
|
* TextureCache: Fix blitting filter in Vulkan and correct viewport/scissor calculation when downscaling.FernandoS272021-11-161-15/+25
|
* Texture Cache: fix memory managment and optimize scaled downloads, uploads.Fernando Sahmkow2021-11-161-4/+19
|
* Texture Cache: Fix downscaling and correct memory comsumption.Fernando Sahmkow2021-11-161-10/+83
|
* Texture Cache: Rescale conversions between depth and colorFernandoS272021-11-161-5/+8
|
* Texture cache: Fix memory consumption and ignore rating when a depth texture is rendered.Fernando Sahmkow2021-11-161-2/+7
|
* vk_texture_cache: Use 3D to scale images when blit is unsupportedameerj2021-11-161-25/+75
|
* vk_texture_cache: Fix BlitScale of non-2D imagesameerj2021-11-161-10/+9
|
* video_core: Refactor resolution scale functionameerj2021-11-161-13/+6
|
* vk_texture_cache: Fix unsupported blit format error checkingameerj2021-11-161-5/+5
|
* vk_texture_cache: Fix early returns on unsupported scalesameerj2021-11-161-18/+10
|
* video_core: Misc resolution scaling related refactoringameerj2021-11-161-13/+18
|
* Texture Cache: Fix Rescaling on MultisampleFernando Sahmkow2021-11-161-2/+6
|
* vk_texture_cache: Simplify scaled image managementameerj2021-11-161-87/+24
|
* vk_texture_cache: Use nearest neighbor scaling when availableameerj2021-11-161-2/+7
|
* vk_texture_cache: Minor cleanupameerj2021-11-161-10/+8
|
* Texture Cache: fix scaling on upload and stop scaling on base resolution.Fernando Sahmkow2021-11-161-14/+32
|
* texture_cache: Simplify image view queries and blacklistingReinUsesLisp2021-11-161-7/+15
|
* Vulkan: Fix downscaling Blit.Fernando Sahmkow2021-11-161-14/+18
|
* vk_texture_cache: Properly scale blit source imagesReinUsesLisp2021-11-161-2/+2
|
* vk_texture_cache: Simplify and optimize scaling blitsReinUsesLisp2021-11-161-106/+62
|
* vk_texture_cache: Fix scaling blit validation errorsReinUsesLisp2021-11-161-81/+78
|
* Fix blits with mipsReinUsesLisp2021-11-161-12/+16
|
* Fix blitsReinUsesLisp2021-11-161-10/+10
|
* TextureCache: Fix rescaling of ImageCopiesFernando Sahmkow2021-11-161-13/+27
|
* Texture Cache: More rescaling fixes.Fernando Sahmkow2021-11-161-0/+8
|
* Texture Cache: Implement Vulkan UpScaling & DownScalingFernando Sahmkow2021-11-161-22/+237
|
* VideoCore: Initial Setup for the Resolution Scaler.Fernando Sahmkow2021-11-161-15/+66
|
* gpu: Migrate implementation to the cpp fileameerj2021-10-031-0/+1
|
* vk_texture_cache: Disable cube compatibility flag on non-mesa AMD GCN4 and earlierameerj2021-09-241-1/+1
| | | | Fixes rainbow textures on BOTW.
* vk_rasterizer: Only clear depth and stencil buffers when set in attachment aspect maskameerj2021-08-211-1/+4
| | | | Silences validation errors for clearing the depth/stencil buffers of framebuffer attachments that were not specified to have depth/stencil usage.
* texture_cache: Address ameerj's reviewyzct123452021-08-071-0/+2
|
* texture_cache: Don't change copyright yearyzct123452021-08-051-1/+1
|
* texture_cache: Split templates outyzct123452021-08-051-1/+1
|
* shader: Implement SULD and SUSTReinUsesLisp2021-07-231-22/+90
|
* shader_recompiler,video_core: Cleanup some GCC and Clang errorslat9nq2021-07-231-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>
* shader: Interact texture buffers with buffer cacheReinUsesLisp2021-07-231-53/+10
|
* shader: Add partial rasterizer integrationReinUsesLisp2021-07-231-64/+4
|
* vk_texture_cache: Use VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL when possibleReinUsesLisp2021-07-201-21/+35
| | | | Silences performance warnings generated from validation layers on each frame.
* Merge pull request #6679 from yzct12345/fix-lets-goFernando S2021-07-191-1/+4
|\ | | | | Fix Pokemon Let's Go on Vulkan
| * Update src/video_core/renderer_vulkan/vk_texture_cache.cppyzct123452021-07-191-1/+1
| | | | | | Co-authored-by: Vitor K <vitor-kiguchi@hotmail.com>
| * Update src/video_core/renderer_vulkan/vk_texture_cache.cppyzct123452021-07-191-1/+1
| | | | | | Co-authored-by: Vitor K <vitor-kiguchi@hotmail.com>
| * Ignore wrong blit formatyzct123452021-07-181-1/+4
| |
* | vk_texture_cache: Finalize renderpass when downloading imagesReinUsesLisp2021-07-181-0/+1
|/
* Reaper: Guarantee correct deletion.Fernando Sahmkow2021-06-201-0/+2
|
* Reaper: Change memory restrictions on TC depending on host memory on VK.Fernando Sahmkow2021-06-171-0/+4
|
* configure_graphics: Add Accelerate ASTC decoding settingameerj2021-06-161-1/+6
|
* texture_cache: Handle out of bound texture blitsameerj2021-05-081-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.
* vk_texture_cache: Swap R and B channels of color flipped formatameerj2021-04-251-1/+24
| | | | Swaps the Red and Blue channels of the A1B5G5R5_UNORM texture format, which was being incorrectly rendered.
* vk_texture_cache: Make use of Common::BitCast where applicableLioncash2021-04-121-5/+6
| | | | | Also clarify the TODO comment a little more on the lacking implementations for std::bit_cast.
* astc_decoder: Reimplement LayersRodrigo Locatti2021-03-131-21/+25
| | | | Reimplements the approach to decoding layers in the compute shader. Fixes multilayer astc decoding when using Vulkan.
* renderer_vulkan: Accelerate ASTC decodingameerj2021-03-131-4/+41
| | | | Co-Authored-By: Rodrigo Locatti <reinuseslisp@airmail.cc>
* vk_staging_buffer_pool: Add stream buffer for small uploadsReinUsesLisp2021-02-131-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.
* video_core: Reimplement the buffer cacheReinUsesLisp2021-02-131-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.
* Merge pull request #5363 from ReinUsesLisp/vk-image-usageRodrigo Locatti2021-01-241-26/+47
|\ | | | | vk_texture_cache: Support image store on sRGB images with VkImageViewUsageCreateInfo
| * vk_texture_cache: Support image store on sRGB images with VkImageViewUsageCreateInfoReinUsesLisp2021-01-241-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.
* | vk_texture_cache: Use Download memory types for texture flushesReinUsesLisp2021-01-151-1/+9
| | | | | | | | Use the Download memory type where it matters.
* | vulkan_memory_allocator: Add "download" memory usage hintReinUsesLisp2021-01-151-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.
* | vulkan_common: Move allocator to the common directoryReinUsesLisp2021-01-151-1/+1
| | | | | | | | Allow using the abstraction from the OpenGL backend.
* | renderer_vulkan: Rename Vulkan memory manager to memory allocatorReinUsesLisp2021-01-151-2/+2
| | | | | | | | | | "Memory manager" collides with the guest GPU memory manager, and a memory allocator sounds closer to what the abstraction aims to be.
* | vk_memory_manager: Improve memory manager and its APIReinUsesLisp2021-01-151-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.
* renderer_vulkan: Move device abstraction to vulkan_commonReinUsesLisp2021-01-041-1/+3
|
* renderer_vulkan: Rename VKDevice to DeviceReinUsesLisp2021-01-031-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.
* vulkan_common: Rename renderer_vulkan/wrapper.h to vulkan_common/vulkan_wrapper.hReinUsesLisp2020-12-311-1/+1
| | | | Allows sharing Vulkan wrapper code between different rendering backends.
* video_core: Rewrite the texture cacheReinUsesLisp2020-12-301-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.
* video_core: Remove unnecessary enum class casting in logging messagesLioncash2020-12-071-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.
* video_core: Resolve more variable shadowing scenarios pt.3Lioncash2020-12-051-4/+4
| | | | | Cleans out the rest of the occurrences of variable shadowing and makes any further occurrences of shadowing compiler errors.
* video_core: Resolve more variable shadowing scenarios pt.2Lioncash2020-12-051-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.
* renderer_vulkan: Make unconditional use of VK_KHR_timeline_semaphoreReinUsesLisp2020-09-191-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.
* video_core: Remove all Core::System references in rendererReinUsesLisp2020-09-061-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.
* vulkan: Silence more -Wmissing-field-initializer warningsLioncash2020-08-031-0/+2
|
* vulkan: Resolve -Wmissing-field-initializer warningsLioncash2020-07-251-0/+2
|
* Merge pull request #4324 from ReinUsesLisp/formatsbunnei2020-07-211-5/+5
|\ | | | | video_core: Fix, add and rename pixel formats
| * video_core: Rearrange pixel format namesReinUsesLisp2020-07-131-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.
* | Merge pull request #4364 from lioncash/desig5bunnei2020-07-181-96/+135
|\ \ | | | | | | vulkan: Make use of designated initializers where applicable
| * | vk_texture_cache: Make use of designated initializers where applicableLioncash2020-07-171-96/+135
| |/
* / vk_texture_cache: Amend mismatched access masks and indices in UploadBufferLioncash2020-07-171-6/+4
|/ | | | | Discovered while converting relevant parts of the codebase over to designated initializers.
* texture_cache: Implement rendering to 3D texturesReinUsesLisp2020-06-081-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.
* vk_rasterizer: Implement storage texelsReinUsesLisp2020-06-021-2/+2
| | | | | | This is the equivalent of an image buffer on OpenGL. - Used by Octopath Traveler
* texture_cache: Implement depth stencil texture swizzlesReinUsesLisp2020-05-261-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.
* vulkan: Remove unnecessary includesLioncash2020-04-291-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.
* renderer_vulkan: Drop Vulkan-HppReinUsesLisp2020-04-111-152/+210
|
* video_core: Use native ASTC when availableReinUsesLisp2020-04-011-17/+17
|
* vk_texture_cache: Silence misc warningsReinUsesLisp2020-03-191-3/+3
|
* vk_state_tracker: Initial implementationReinUsesLisp2020-02-281-0/+1
| | | | Add support for render targets and viewports.
* vk_texture_cache: Address feedbackReinUsesLisp2020-01-161-13/+4
|
* vk_texture_cache: Fix typo in commentaryRodrigo Locatti2020-01-161-1/+1
| | | Co-Authored-By: MysticExile <30736337+MysticExile@users.noreply.github.com>
* vk_texture_cache: Implement generic texture cache on VulkanReinUsesLisp2020-01-141-0/+484
It currently ignores PBO linearizations since these should be dropped as soon as possible on OpenGL.