Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-02-09 | Merge pull request #5905 from lat9nq/core-sized-dealloc | LC | |
core: Add -fsized-dealloction as a Clang flag | |||
2021-02-09 | Merge pull request #5903 from lat9nq/config-silence-warns | LC | |
configure_input_player_widget: Silence unused variable warnings | |||
2021-02-09 | configure_input_player_widget: Silence unused variable warnings | lat9nq | |
Prevents clang 11 from throwing an error since these variables are unused. | |||
2021-02-09 | core: Add -fsized-dealloction as a Clang flag | lat9nq | |
Prevents a operator delete error when compiling with Clang 11. | |||
2021-02-09 | Merge pull request #5901 from lioncash/input-warn | Ameer J | |
udp: Silence warnings on Clang 12 | |||
2021-02-09 | Merge pull request #5900 from lioncash/unused-func | bunnei | |
video_core: Remove unused functions and variables | |||
2021-02-09 | udp: Silence unused member variable warnings | Lioncash | |
Simply mark them as unused for now. | |||
2021-02-09 | udp/client: Define ClientData constructor/destructor in cpp file | Lioncash | |
Prevents compilation errors on clang 12 due to incomplete types within a unique_ptr member. | |||
2021-02-09 | gl_rasterizer: Remove unused variables | Lioncash | |
Resolves warnings on clang 12 | |||
2021-02-09 | texture_cache/util: Remove unused functions | Lioncash | |
Silences a few warnings on clang 12. | |||
2021-02-08 | Settings: Add depth to Joysticks on Pro Controller preview (#5894) | Jatoxo | |
* Add some depth to ProJoysticks * address comments * clang * address nits * fix wrong inner_offset when offset.x was 0 | |||
2021-02-09 | Merge pull request #5899 from ameerj/ffmpeg-revert | Morph | |
cmake: Revert FFmpeg 4.3.1 update for Windows builds | |||
2021-02-08 | cmake: Revert FFmpeg 4.3.1 update for Windows builds | ameerj | |
The new 4.3.1 externals build seems to not be compatible with yuzu. This also fixes an oversight when renaming CMake variables. | |||
2021-02-08 | Merge pull request #5880 from lat9nq/ffmpeg-external | Ameer J | |
cmake: FFmpeg linking rework | |||
2021-02-08 | Merge pull request #5892 from german77/backup | bunnei | |
olsc: Stub GetSaveDataBackupSetting | |||
2021-02-08 | Merge pull request #5868 from german77/HandheldFix | bunnei | |
Prevent over scheduling audio events and add motion update unschedule event | |||
2021-02-08 | README Edit for EA | Schplee | |
2021-02-08 | Merge pull request #5895 from Morph1984/utf16-cvt | LC | |
string_util: Remove MSVC workaround for converting between UTF8/UTF16 | |||
2021-02-08 | string_util: Remove MSVC workaround for converting between UTF8/UTF16 | Morph | |
This has been fixed as of Visual Studio 2019 Version 16.2 | |||
2021-02-07 | Merge pull request #5339 from german77/interactive | bunnei | |
Settings: Make settings controller image change with controller input | |||
2021-02-07 | olsc: Stub GetSaveDataBackupSetting | german | |
2021-02-08 | Merge pull request #5872 from lioncash/svc-error | Chloe | |
svc: Provide more detailed error logs for svc functions | |||
2021-02-07 | Merge pull request #5888 from Morph1984/ogl-4.6 | Rodrigo Locatti | |
renderer_opengl: Update OpenGL backend version requirement to 4.6 | |||
2021-02-07 | Merge pull request #5889 from ogniK5377/morton-remove | LC | |
video_core: Delete morton | |||
2021-02-08 | video_core: Delete morton | Chloe Marcec | |
moron.h & morton.cpp are not used anywhere and are just empty files | |||
2021-02-07 | renderer_opengl: Update OpenGL backend version requirement to 4.6 | Morph | |
2021-02-07 | Merge pull request #5887 from ogniK5377/lm-fix | bunnei | |
lm: Fix ReadLeb128 | |||
2021-02-07 | Merge pull request #5878 from aleasto/master | Morph | |
pl_u: Fix read out of bounds | |||
2021-02-07 | lm: Fix ReadLeb128 | Chloe Marcec | |
Fixes assertion on Bloodstained Ritual of the Night. We would over read sometimes, this is fixed by checking if the top bit is set in the first iteration. We also lock the loop off to be only the max size of the type we can fit. Finally we changed an incorrect print of "DEBUG" to "TRACE" to reflect the proper log severity | |||
2021-02-07 | Add GC controller animation | german | |
2021-02-06 | Merge pull request #5885 from MerryMage/ring_buffer-granularity | bunnei | |
ring_buffer: Remove granularity template argument | |||
2021-02-06 | Merge pull request #5871 from lioncash/address-arb | bunnei | |
k_address_arbiter: Minor cleanup | |||
2021-02-06 | ring_buffer: Remove granularity template argument | MerryMage | |
Non-obvious bug in RingBuffer::Push(std::vector<T>&) when granularity != 1 Just remove it altogether because we do not have a use for granularity != 1 | |||
2021-02-06 | pl_u: Fix read out of bounds | Alessandro Astone | |
2021-02-06 | Refresh debug controller settings | german | |
2021-02-06 | Refresh controller only when necessary | german | |
2021-02-06 | Add SL SR vectors, change dual joycon view, add missing raw data from ↵ | german | |
keyboard/mouse | |||
2021-02-06 | Add controller window and single joycon top view | german | |
2021-02-06 | Replace text with vectors | german | |
2021-02-06 | Make settings controller image change with controller input | german | |
2021-02-06 | Merge pull request #5326 from german77/hidUpdate1 | bunnei | |
HID: Update the HID service to match more closely to switchbrew part 1 | |||
2021-02-06 | k_address_arbiter: Unfold R_UNLESS macros | Lioncash | |
Allows for more descriptive error messages and also doesn't hide control-path exit returns from the reader. | |||
2021-02-06 | k_address_arbiter: Remove unnecessary usages of std::addressof | Lioncash | |
This is a useful function in a generic context or with types that overload unary operator&. However, primitives and pointers will never do this, so we can opt for a more straightforward syntax. | |||
2021-02-06 | k_address_arbiter: Remove dead code | Lioncash | |
This code is never used, so we can remove it. It's in version control, so it can always be brought back when needed. | |||
2021-02-06 | ffmpeg: Checkout tag n4.3.1 | lat9nq | |
Target a specific release version rather than some random development commit. | |||
2021-02-06 | CMakeLists: Use bundled FFmpeg as a fallback | lat9nq | |
Sets YUZU_USE_BUNDLED_FFMPEG as a CMake dependent option that is OFF on Linux and ON for WIN32 targets. If FFmpeg is not found when YUZU_USE_BUNDLED_FFMPEG is OFF, the bundled module/binaries are used instead. Reverts earlier changes to FindFFmpeg a bit, mostly to keep parity with it's Citra version a bit. Now _FFmpeg_ALL_COMPONENTS lists all components. We overwrite FFmpeg_LIBRARIES and FFmpeg_INCLUDE_DIR after using the module. | |||
2021-02-06 | svc: Provide more detailed error logs for svc functions | Lioncash | |
Allows SVC calls to have much more informative information during error cases. This also doesn't hide control flow returns from the reader. | |||
2021-02-05 | Merge pull request #5862 from bunnei/kevent | bunnei | |
Kernel Rework: Refactor KEvent/KReadableEvent/KWritableEvent | |||
2021-02-05 | CMakeLists: Update to FFmpeg 4.3.1 for WIN32 | lat9nq | |
Minimal binaries go brrrrrrr | |||
2021-02-05 | Merge pull request #5875 from lioncash/identifier | bunnei | |
k_priority_queue: Minor cleanup |