summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* time_zone_manager: Add null terminatorGravatar lat9nq2023-06-201-2/+4
| | | | We aren't null-terminating this string after the copy, and we need to.
* time_zone_manager: Stop on commaGravatar lat9nq2023-06-201-1/+3
| | | | | | | | | | | | | | | | This is a deviation from the reference time zone implementation. The actual code will set a pointer to the time zone name here, but for us we have a limited number of characters to work with, and the name of the time zone here could be larger than 8 characters. We can make the assumption that time zone names greater than five characters in length include a comma that denotes more data. Nintendo just truncates that data for the name, so we can do the same. time_zone_manager: Check for length of array Just to be double sure that we never break past the array length, directly compare against it.
* Merge pull request #10818 from vonchenplus/render_target_samplesGravatar liamwhite2023-06-202-18/+14
|\ | | | | video_core: add samples check when find render target
| * video_core: add samples check when find render targetGravatar FengChen2023-06-172-18/+14
| |
* | Merge pull request #10835 from lat9nq/intel-restrict-compute-disableGravatar liamwhite2023-06-206-12/+38
|\ \ | | | | | | vulkan_device: Restrict compute disable only to affected Intel drivers
| * | vulkan_device: Remove brace initializerGravatar toast29032023-06-191-1/+1
| | | | | | | | | Co-authored-by: Tobias <thm.frey@gmail.com>
| * | video_core: Check broken compute earlierGravatar lat9nq2023-06-192-2/+3
| | | | | | | | | | | | | | | Checks it as the system is determining what settings to enable. Reduces the need to check settings while the system is running.
| * | vk_device_info: Check only affected Intel driversGravatar lat9nq2023-06-183-8/+11
| | | | | | | | | | | | | | | | | | Renames is_intel_proprietary to has_broken_compute for accuracy. vk_device_info: Use vulkan::device to check compute
| * | video_core: Formalize HasBrokenComputeGravatar lat9nq2023-06-183-4/+26
| | | | | | | | | | | | | | | | | | | | | | | | Also limits it to only affected Intel proprietrary driver versions. vulkan_device: Move broken compute determination vk_device: Remove errant back quote
* | | Merge pull request #10840 from Kelebek1/unbug_blinks_brainGravatar liamwhite2023-06-201-2/+2
|\ \ \ | |/ / |/| | Use current GPU address when unmapping GPU pages, not the base
| * | Use current GPU address when unmapping GPU pages, not the baseGravatar Kelebek12023-06-191-2/+2
| | |
* | | Merge pull request #10829 from lat9nq/remove-external-memGravatar liamwhite2023-06-182-19/+0
|\ \ \ | | | | | | | | vulkan_device: Remove external memory extension
| * | | vulkan_device: Remove external memory extensionGravatar lat9nq2023-06-182-19/+0
| | | | | | | | | | | | | | | | Unused in yuzu. Enables yuzu to boot games in Wine using Vulkan.
* | | | Merge pull request #10486 from lat9nq/vk-device-find-onceGravatar liamwhite2023-06-1811-50/+138
|\ \ \ \ | | | | | | | | | | yuzu-qt: Load Vulkan device info at startup
| * | | | vk_device_info: Clean up includes [IWYU]Gravatar lat9nq2023-06-062-3/+11
| | | | |
| * | | | vk_device_info: Add SPDX dataGravatar lat9nq2023-06-062-0/+6
| | | | |
| * | | | yuzu-qt: Load Vulkan device info at startupGravatar lat9nq2023-06-0611-50/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Loading it when the configuration opens now incurs a noticeable delay. We also don't need to rediscover the same data repeatedly each time the configuration opens. Moves vulkan device info discovery to yuzu's startup as opposed to the configure_graphics constructor.
* | | | | Merge pull request #10798 from vonchenplus/draw_texture_scaleGravatar liamwhite2023-06-181-3/+7
|\ \ \ \ \ | | | | | | | | | | | | video_core: drawtexture support upscale
| * | | | | video_core: drawtexture support upscaleGravatar Feng Chen2023-06-161-3/+7
| | | | | |
* | | | | | Merge pull request #10809 from Kelebek1/reduce_vertex_bindingsGravatar liamwhite2023-06-182-13/+16
|\ \ \ \ \ \ | | | | | | | | | | | | | | Synchronize vertex buffer even when it doesn't require binding
| * | | | | | Synchronize vertex buffer even when it doesn't require bindingGravatar Kelebek12023-06-172-13/+16
| | |_|_|/ / | |/| | | |
* | | | | | Merge pull request #10797 from lat9nq/tzdb-patchGravatar bunnei2023-06-173-11/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | time: Various time zone fixes
| * | | | | | time_zone_service: Always write time zone rule dataGravatar lat9nq2023-06-171-8/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Switch firmware will initialize this data even if the given parameters are invalid. We should do the same.
| * | | | | | time_zone_manager: Compare to the correct booleanGravatar lat9nq2023-06-151-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reference implementation does not compare the booleans as we had them. Use the correct ones as in the reference. Also adds an assert. I have been made aware of a crash here and am not able to reproduce currently.
| * | | | | | nx_tzdb: Correct Antarctica spellingGravatar lat9nq2023-06-151-1/+1
| | | | | | |
* | | | | | | renderer_vulkan: add missing includeGravatar Liam2023-06-171-0/+1
| | | | | | |
* | | | | | | Merge pull request #10813 from lat9nq/no-atomic-boolGravatar Morph2023-06-172-5/+14
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | k_thread: Use a mutex and cond_var to sync bool
| * | | | | | k_thread: Use a mutex and cond_var to sync boolGravatar lat9nq2023-06-172-5/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | std::atomic<bool> is broken on MinGW and causes deadlocks there. Use a normal cond var in its stead.
* | | | | | | Merge pull request #10744 from Wollnashorn/af-for-allGravatar Fernando S2023-06-1814-80/+243
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | video_core: Improved anisotropic filtering heuristics
| * | | | | | video_core: Only apply AF to 2D (array) image typesGravatar Wollnashorn2023-06-171-2/+7
| | | | | | |
| * | | | | | video_core: Removed AF for all mip modes option as it's default nowGravatar Wollnashorn2023-06-179-40/+3
| | | | | | |
| * | | | | | video_core: Use sampler IDs instead pointers in the pipeline configGravatar Wollnashorn2023-06-168-23/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | | | | video_core: Fallback to default anisotropy instead to 1x anisotropyGravatar Wollnashorn2023-06-157-16/+20
| | | | | | |
| * | | | | | video_core: Disable AF for non-color image formatsGravatar Wollnashorn2023-06-151-0/+9
| | | | | | |
| * | | | | | video_core: Fixed compilation errors because of name shadowingGravatar Wollnashorn2023-06-152-9/+9
| | | | | | |
| * | | | | | video_core: Add per-image anisotropy heuristics (format & mip count)Gravatar Wollnashorn2023-06-1511-71/+168
| | | | | | |
| * | | | | | video_core: Apply AF only to samplers with normal LOD range [0, 1+x]Gravatar Wollnashorn2023-06-141-4/+6
| | | | | | |
| * | | | | | video_core: Fix default anisotropic heuristicGravatar Wollnashorn2023-06-141-4/+4
| | | | | | |
| * | | | | | video_core: Never apply AF to None mipmap modeGravatar Wollnashorn2023-06-141-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Should fix some artifacts with the "apply anisotropic filtering for all mipmap modes" option
| * | | | | | video_core: Disable anisotropic filtering for samplers with depth compareGravatar Wollnashorn2023-06-131-2/+3
| | | | | | |
| * | | | | | video_core: Option to apply anisotropic filtering for all mipmap modesGravatar Wollnashorn2023-06-139-1/+37
| | | | | | |
* | | | | | | Merge pull request #10783 from liamwhite/memoryGravatar bunnei2023-06-162-6/+6
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | video_core: preallocate fewer IR blocks
| * | | | | | | video_core: preallocate fewer IR blocksGravatar Liam2023-06-142-6/+6
| | | | | | | |
* | | | | | | | Merge pull request #10808 from t895/settings-stuffsGravatar bunnei2023-06-1612-74/+165
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | android: Expose settings
| * | | | | | | | android: Expose audio output engine settingGravatar Charles Lombardo2023-06-167-21/+59
| | | | | | | | |
| * | | | | | | | android: Expose CPU debugging optionGravatar Charles Lombardo2023-06-165-23/+30
| | | | | | | | |
| * | | | | | | | android: Expose fastmem optionGravatar Charles Lombardo2023-06-164-29/+59
| | | | | | | | |
| * | | | | | | | android: Support changing multiple settings at onceGravatar Charles Lombardo2023-06-162-1/+17
| | |_|_|_|/ / / | |/| | | | | |
* | | | | | | | Merge pull request #10807 from t895/ktlint-fixesGravatar bunnei2023-06-161-2/+3
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | | android: Ktlint fixes
| * | | | | | | android: Bump ktlint version to 0.47.1Gravatar Charles Lombardo2023-06-161-1/+1
| | | | | | | |