summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-07service: time: Fix CalculateStandardUserSystemClockDifferenceByUserMorph
CalculateStandardUserSystemClockDifferenceByUser passes in the ClockSnapshots through 2 input buffers and not as raw arguments. Fix this by reading the 2 input buffers instead of popping raw arguments.
2021-04-07Merge pull request #6143 from lat9nq/nvhost_null_memcpybunnei
nvhost_ctrl_gpu: Avoid sending null pointer to memcpy
2021-04-07Merge pull request #6159 from Morph1984/acc-update-12.xbunnei
service: acc: Update service function tables
2021-04-07Merge pull request #6130 from degasus/better_assert_handlingbunnei
common: Move assert failure handling into a cpp file.
2021-04-07Merge pull request #6153 from lioncash/svcrangebunnei
process_capability: Handle extended SVC range
2021-04-07Merge pull request #6161 from Morph1984/audio-update-12.xbunnei
service: audio: Update service function tables
2021-04-07hwopus: Update to 12.xMorph
2021-04-07dauth_o: Update to 11.xMorph
2021-04-07acc_u1: Update to 12.xMorph
2021-04-07acc_su: Update to 12.xMorph
2021-04-06Merge pull request #6146 from lat9nq/vp9_empty_memcpybunnei
vp9: Avoid memcpy with null pointers
2021-04-07process_capability: Handle extended SVC rangeLioncash
12.x extended the range of SVC IDs, so we need to expand the range of bits that need to be tested. The upside of this is that we can eliminate a range check, given the whole range is used.
2021-04-05nvhost_ctrl_gpu: Avoid sending null pointer to memcpylat9nq
Undefined Behaviour Sanitizer reports a null pointer is being sent to memcpy, thought it's "guaranteed to never be null". Guard it with an if statement, and log when the action has been averted.
2021-04-05vp9: Avoid memcpy with null pointerslat9nq
Avoid sending null pointer to memcpy as reported by Undefined Behaviour Sanitizer. Replaces the std::memcpy calls in SpliceVectors with std::copy calls. Opting to replace all the memcpy's with copy's. Co-authored-by: LC <mathew1800@gmail.com>
2021-04-04Merge pull request #6141 from lat9nq/cfg_gphcs_stack_useLC
configure_graphics: Prevent stack-use-after-scope
2021-04-04common: Move assert failure handling into a cpp file.Markus Wick
Advantage: Altering the handler does not need a full recompilation. Disadvantage: noreturn is droped, so the caller is a bit slower. We quite often run yuzu with a YOLO assertion handler. In fact, only very few games run at all with asserts. This patch allows developers to patch the handler without recompiling everything. The overhead of the missing "noreturn" attribute shoul be negletable.
2021-04-04configure_graphics: Prevent stack-use-after-scopelat9nq
Address Sanitizer reports stack-use-after-scope on line 231 `vulkan_devices.push_back(QString::fromStdString(name));`. Instead of using a pointer, copy the string into a std::string and use that, instead.
2021-04-04Merge pull request #6139 from Morph1984/cmake-fix-buildMorph
ci: Fix MSVC build with CMake 3.20.0
2021-04-04ci: Fix MSVC build with CMake 3.20.0Morph
2021-04-03Merge pull request #6127 from german77/udpSingleConnectionbunnei
InputCommon: Improve UDP communications
2021-04-02Merge pull request #6132 from MerryMage/code_sizebunnei
arm_dynarmic: Increase size of code cache
2021-04-02Merge pull request #6131 from german77/rightjoyconSLSRMorph
HID: Fix SL and SR buttons for right joycon
2021-04-02arm_dynarmic: Increase size of code cacheMerryMage
2021-04-02HID: Fix SL and SR buttons for right joycongerman77
2021-04-01Merge pull request #6129 from degasus/cmake_libzipbunnei
externals/cmake: Fix case spelling of libzip.
2021-04-01Merge pull request #6128 from bunnei/update-dynarmic-2bunnei
externals: dynarmic: Update to latest rev. to increase code size.
2021-04-02externals: Fix case spelling of libzip.Markus Wick
CMake is case senstive, so Libzip vs LIBZIP was a bug. Upstream calls themself libzip, so let's pick this naming.
2021-04-01externals: dynarmic: Update to latest rev. to increase code size.bunnei
- The current limits are being hit in yuzu with some games. - This should fix the slowdowns in newer updates for Super Smash Bros. Ultimate.
2021-04-01Merge pull request #6106 from MerryMage/nullptr-jitbunnei
[test] arm_dynarmic: Always have a 'valid' jit instance
2021-03-30Merge pull request #6126 from ↵bunnei
Morph1984/stub-SetAlbumImageTakenNotificationEnabled ISelfController: Stub SetAlbumImageTakenNotificationEnabled
2021-03-30Use a single connection for UDP server, make connection test longer and ↵german77
check all pads instead of only the first one
2021-03-30Merge pull request #5927 from ameerj/astc-computeRodrigo Locatti
video_core: Accelerate ASTC texture decoding using compute shaders
2021-03-30Merge pull request #6116 from german77/userArgumentbunnei
yuzu/main: Add user command line argument
2021-03-30ISelfController: Stub SetAlbumImageTakenNotificationEnabledMorph
This service call sets an internal flag whether a notification is shown when an image is captured. Currently we do not support capturing images via the capture button, so this can be stubbed for now.
2021-03-30Merge pull request #6124 from jbeich/vulkan+openglbunnei
vulkan_common: enable OpenGL interop on other Unices
2021-03-29Merge pull request #6109 from german77/gestureIDbunnei
HID: Initialize correctly the gesture finger_id and filter invalid inputs
2021-03-30vulkan_common: enable OpenGL interop on other UnicesJan Beich
2021-03-29Merge pull request #6102 from ogniK5377/fd-passbunnei
nvdrv: Pass device fd and handle device create methods for device opening and closing
2021-03-28Merge pull request #6118 from MerryMage/dynarmicbunnei
externals: Update dynarmic to c28f13af
2021-03-28Merge pull request #6115 from bunnei/fix-kernel-initbunnei
hle: kernel: Initialize preemption task after schedulers.
2021-03-27externals: Update dynarmic to c28f13afMerryMage
AVX-512 bugfixes
2021-03-27yuzu/main: Add user command line argumentgerman77
2021-03-27Merge pull request #6114 from Morph1984/friend-logbunnei
service: friend: Change logging class from ACC to Friend
2021-03-27hle: kernel: Initialize preemption task after schedulers.bunnei
- Fixes a startup crash that occurs if CoreTiming tries to preempt before kernel initialization completes.
2021-03-27service: friend: Change logging class from ACC to FriendMorph
2021-03-26HID: Initialize correctly the gesture finger_id and filter invalid resultsNarr the Reg
2021-03-25astc_decoder: Refactor for style and more efficient memory useameerj
2021-03-25nvdrv: Pass device fd and handle device create methods for device opening ↵Chloe Marcec
and closing We pass the fd to the ioctl as well as alert the device when it's opened or closed to allow for fd unique actions to take place
2021-03-24Merge pull request #6101 from ogniK5377/alloc-as-exbunnei
nvdrv: Change InitializeEx to AllocAsEx
2021-03-24Merge pull request #6108 from jbeich/freebsd-async-shadersbunnei
gl_device: unblock async shaders on other Unix systems