Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-04 | Merge pull request #5064 from lioncash/node-shadow | bunnei | |
node: Eliminate variable shadowing | |||
2020-12-03 | Merge pull request #5061 from lioncash/pessimizing | bunnei | |
vp9/vic: Resolve pessimizing moves | |||
2020-12-03 | Merge pull request #4996 from bunnei/use-4jits | bunnei | |
Kernel: Refactor to use 4-instances of Dynarmic & various cleanups and improvements | |||
2020-12-03 | node: Mark member functions as [[nodiscard]] where applicable | Lioncash | |
Prevents logic bugs from accidentally ignoring the return value. | |||
2020-12-03 | node: Eliminate variable shadowing | Lioncash | |
2020-12-03 | vp9/vic: Resolve pessimizing moves | Lioncash | |
Removes the usage of moves that don't result in behavior different from a copy, or otherwise would prevent copy elision from occurring. | |||
2020-12-03 | mouse_poller: Remove unused includes | Lioncash | |
2020-12-03 | mouse_input: Invert conditional in UpdateYuzuSettings() | Lioncash | |
Allows the struct to be constructed in place. | |||
2020-12-03 | mouse_input: Remove two casts and amend some formatting | Lioncash | |
Removes the use of two static casts and improves the readability of some vectors slightly. | |||
2020-12-03 | mouse_input: Resolve a -Wdocumentation warning | Lioncash | |
2020-12-03 | mouse_input: Remove unused includes | Lioncash | |
2020-12-02 | Merge pull request #5000 from lioncash/audio-error | bunnei | |
audio_core: Make shadowing and unused parameters errors | |||
2020-12-03 | audio_core: Make shadowing and unused parameters errors | Lioncash | |
Moves the audio code closer to enabling warnings as errors in general. | |||
2020-12-02 | Merge pull request #5002 from ameerj/nvdec-frameskip | bunnei | |
nvdec: Queue and display all decoded frames, cleanup decoders | |||
2020-12-01 | Merge pull request #4937 from german77/multiUDP | bunnei | |
InputCommon: Add multiple udp server support | |||
2020-12-01 | Merge pull request #5047 from german77/MouseInput | LC | |
InputCommon: Fix implicit conversion in mouse input | |||
2020-11-30 | Fix implicit conversion in mouse input | german | |
2020-11-30 | Merge pull request #5013 from ReinUsesLisp/vk-early-z | bunnei | |
vk_shader_decompiler: Implement force early fragment tests | |||
2020-11-30 | Disable web applet and warning when compiling for Linux on CI | lat9nq | |
yuzu's web applet does not or barely reacts to user input while open in Linux. It can be closed via 'Exit Web Applet' on the menubar, however if yuzu is in fullscreen, this is effectively a softlock as the menubar cannot be accessed. This disables building yuzu with the web applet on the Linux CI target. In addition, this disables the QMessageBox warning about not having compiled yuzu with the web applet. | |||
2020-11-29 | Merge pull request #4939 from german77/MouseInput | bunnei | |
InputCommon: Implement full mouse support | |||
2020-11-29 | Merge pull request #5005 from ReinUsesLisp/div-ceil | bunnei | |
common: Add Common::DivCeil and Common::DivCeilLog2 | |||
2020-11-29 | kernel: scheduler: Minor cleanup to remove duplicated code. | bunnei | |
2020-11-29 | kernel: time_manager: Protect access with a mutex. | bunnei | |
2020-11-29 | common: fiber: Use VirtualBuffer for stack memory. | bunnei | |
- This will be aligned by default, and helps memory usage. | |||
2020-11-29 | hle: kernel: thread: Remove unused "Running" state. | bunnei | |
2020-11-29 | core: arm: Implement InvalidateCacheRange for CPU cache invalidation. | bunnei | |
2020-11-29 | hle: kernel: time_manager: Avoid a crash on process exit. | bunnei | |
2020-11-29 | hle: kernel: AddressArbiter: Remove unused code. | bunnei | |
2020-11-29 | hle: kernel: SynchronizationObject: Use atomic_bool for is_signaled. | bunnei | |
2020-11-29 | common: fiber: Use boost::context instead of native fibers on Windows. | bunnei | |
2020-11-29 | hle: kernel: multicore: Replace n-JITs impl. with 4 JITs. | bunnei | |
2020-11-28 | Merge pull request #4998 from Morph1984/bioshock-patch | bunnei | |
hid: Check if applet_resource exists in InitializeVibrationDevice | |||
2020-11-28 | Add missing types to NpadCommunicationMode | german | |
2020-11-28 | Merge pull request #5021 from german77/StubCommunicationMode | bunnei | |
HID: Stub set and get NpadCommunicationMode | |||
2020-11-28 | audio_core: Remove temp_mix_buffer | Chloe Marcec | |
It's unused and doesn't need to be initialized | |||
2020-11-27 | Merge pull request #5015 from comex/xx-sign-compare | bunnei | |
tests: Fix warning about comparison between signed and unsigned | |||
2020-11-27 | Merge pull request #5011 from lioncash/file-str2 | bunnei | |
core: Reduce string copies in GetGameFileFromPath() | |||
2020-11-27 | Merge pull request #5014 from comex/xx-invalid-offsetof | LC | |
CMakeLists: disable -Winvalid-offsetof | |||
2020-11-27 | CMakeLists: disable -Winvalid-offsetof | comex | |
This Clang warning complains when offsetof is used on a non-standard-layout type (i.e. any class using various C++ features), even though it works fine (and is not undefined behavior as of C++17). | |||
2020-11-27 | tests: Fix warning about comparison between signed and unsigned | comex | |
2020-11-27 | core: Eliminate remaining usages of the global system instance | Lioncash | |
Removes all remaining usages of the global system instance. After this, migration can begin to migrate to being constructed and managed entirely by the various frontends. | |||
2020-11-27 | savedata_factory: Eliminate usage of the global system instance | Lioncash | |
Now there's only two meaningful instances left in core. | |||
2020-11-27 | Merge pull request #5018 from lioncash/service-global | Rodrigo Locatti | |
service: Eliminate usages of the global system instance | |||
2020-11-26 | Stub set and get NpadCommunicationMode | german | |
2020-11-26 | service: Eliminate usages of the global system instance | Lioncash | |
Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services. | |||
2020-11-26 | codec: Fix `pragma GCC diagnostic pop` missing corresponding push | comex | |
2020-11-26 | vk_shader_decompiler: Implement force early fragment tests | ReinUsesLisp | |
Force early fragment tests when the 3D method is enabled. The established pipeline cache takes care of recompiling if needed. This is implemented only on Vulkan to avoid invalidating the shader cache on OpenGL. | |||
2020-11-26 | core: Reduce string copies in GetGameFileFromPath() | Lioncash | |
Eliminates some minor string churn where applicable. Also eliminates an unnecessary vector copy. | |||
2020-11-26 | Limit queue size to 10 frames | ameerj | |
Workaround for ZLA, which seems to decode and queue twice as many frames as it displays. | |||
2020-11-26 | Merge pull request #4975 from comex/invalid-syncpoint-id | bunnei | |
nvdrv, video_core: Don't index out of bounds when given invalid syncpoint ID |