summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | Merge pull request #10086 from Morph1984/coretiming-ng-1Gravatar bunnei2023-06-2131-429/+280
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | core_timing: Use CNTPCT as the guest CPU tick
| * | | | | | | | | nvdisp: Fix SingleCore frametime reportingGravatar Morph2023-06-071-1/+1
| | | | | | | | | |
| * | | | | | | | | core_timing: Fix SingleCore cycle timerGravatar Morph2023-06-074-43/+31
| | | | | | | | | |
| * | | | | | | | | (wall, native)_clock: Add GetGPUTickGravatar Morph2023-06-077-12/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows us to directly calculate the GPU tick without double conversion to and from the host clock tick.
| * | | | | | | | | time: Use compile time division for TimeSpanType conversionGravatar Morph2023-06-075-11/+15
| | | | | | | | | |
| * | | | | | | | | core_timing: Use CNTPCT as the guest CPU tickGravatar Morph2023-06-0714-122/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, we were mixing the raw CPU frequency and CNTFRQ. The raw CPU frequency (1020 MHz) should've never been used as CNTPCT (whose frequency is CNTFRQ) is the only counter available.
| * | | | | | | | | nvnflinger: Acquire lock prior to signaling the vsync variableGravatar Morph2023-06-071-1/+2
| | | | | | | | | |
| * | | | | | | | | (wall, native)_clock: Rework NativeClockGravatar Morph2023-06-075-259/+94
| | | | | | | | | |
| * | | | | | | | | x64: Deduplicate RDTSC usageGravatar Morph2023-06-075-19/+82
| | | | | | | | | |
* | | | | | | | | | Merge pull request #10777 from liamwhite/no-barrierGravatar bunnei2023-06-216-0/+28
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | video_core: optionally skip barriers on feedback loops
| * | | | | | | | | | video_core: optionally skip barriers on feedback loopsGravatar Liam2023-06-146-0/+28
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #10841 from liamwhite/math-is-hardGravatar bunnei2023-06-211-4/+10
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | vfs_concat: fix offset calculation when not aligned to file boundary
| * | | | | | | | | | | vfs_concat: verify short readGravatar Liam2023-06-191-0/+5
| | | | | | | | | | | |
| * | | | | | | | | | | vfs_concat: fix offset calculation when not aligned to file boundaryGravatar Liam2023-06-181-4/+5
| | |_|_|_|_|_|_|_|_|/ | |/| | | | | | | | |
* | | | | | | | | | | Merge pull request #10863 from lat9nq/tz-end-of-stringGravatar bunnei2023-06-211-1/+5
|\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / |/| | | | | | | | | | time_zone_manager: Stop on comma
| * | | | | | | | | | 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.
* / | | | | | | | | android: Don't show custom driver button on mali and x86Gravatar Charles Lombardo2023-06-203-71/+123
|/ / / / / / / / /
* | | | | | | | | 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
| | | | | | | | | | |