| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-07-02 | Rename two functions in NS | VolcaEM | |
| - Rename "GetShellEvent" to "GetShellEventHandle" - Rename "LaunchApplicationFromHost" to "LaunchApplication" | |||
| 2020-07-02 | Rename GetApplicationArea2 to GetApplicationAreaSize | VolcaEM | |
| 2020-07-01 | cmake: stop linking against QGL after c6a0ab979239 | Jan Beich | |
| 2020-07-01 | shader_cache: Fix use-after-free and orphan invalidation cache entries | ReinUsesLisp | |
| This fixes some cases where entries could have been removed multiple times reading freed memory. To address this issue this commit removes duplicates from entries marked for removal and sorts out the removal process to fix another use-after-free situation. Another issue fixed in this commit is orphan invalidation cache entries. Previously only the entries that were invalidated in the current operations had its entries removed. This led to more use-after-free situations when these entries were actually invalidated but referenced an object that didn't exist. | |||
| 2020-07-01 | Reset adapter state on init, fixes errors relating driver hang from ↵ | Ameer | |
| unexpected unplug | |||
| 2020-07-01 | Don't handle cycles late if stretcher is active | David Marcec | |
| Timestretcher seems to be broken | |||
| 2020-07-01 | audio: Improving audio timing for multicore/single core | David Marcec | |
| Fixes the issue with needing the timestretcher for multicore. | |||
| 2020-07-01 | Merge pull request #4217 from lioncash/prototype | David | |
| key_manager: Make use of canonical deleted operator= | |||
| 2020-07-01 | externals: Track opus as submodule instead of using conan | David Marcec | |
| Supersedes #4068 see for details. | |||
| 2020-07-01 | Merge pull request #4208 from jbeich/freebsd | LC | |
| common: unbreak build on BSDs | |||
| 2020-07-01 | key_manager: Correct casing of instance() | Lioncash | |
| Our codebase uppercases member function names. | |||
| 2020-07-01 | key_manager: Delete move operations | Lioncash | |
| Prevents the singleton from being moved from. | |||
| 2020-07-01 | key_manager: Make use of canonical deleted operator= | Lioncash | |
| operator= typically returns a reference, it's not void. While we're at it, we can correct the parameter formatting to adhere to the codebase. | |||
| 2020-07-01 | Merge pull request #3967 from FearlessTobi/keys-singleton | David | |
| crypto: Make KeyManager a singleton class | |||
| 2020-06-30 | Merge pull request #4153 from ogniK5377/prepo-multibuf | bunnei | |
| prepo: : Don't read extra buffer from report unless passed | |||
| 2020-06-30 | Merge pull request #4063 from FreddyFunk/game-version-in-title | bunnei | |
| Add game version to window title | |||
| 2020-06-30 | Merge pull request #4166 from VolcaEM/quickstart-faq | bunnei | |
| Add "Open Quickstart Guide" and "FAQ" buttons to the Help menu | |||
| 2020-06-30 | common: switch to nullptr for sysctl's empty new value | Jan Beich | |
| 2020-06-30 | Address feedback regarding increments, const vars, and general cleanup | Ameer | |
| 2020-06-30 | Merge pull request #4176 from ReinUsesLisp/compatible-formats | Fernando Sahmkow | |
| texture_cache: Check format compatibility before copying | |||
| 2020-06-30 | Merge pull request #4157 from ReinUsesLisp/unified-turing | Fernando Sahmkow | |
| gl_device: Enable NV_vertex_buffer_unified_memory on Turing devices | |||
| 2020-06-30 | fix implicit conversion of size_t type to int | Ameer | |
| 2020-06-30 | maxwell_to_gl: Implement MirrorOnceClampOGL using GL_MIRROR_CLAMP_EXT | Morph | |
| Like MirrorOnceBorder, this requires the GL_EXT_texture_mirror_clamp extension. This extension is unfortunately not available on Intel's drivers (both Windows proprietary and Linux Mesa). Use GL_MIRROR_CLAMP_TO_EDGE as a fallback if the extension is unavailable. | |||
| 2020-06-30 | Merge pull request #4191 from Morph1984/vertex-formats | Rodrigo Locatti | |
| maxwell_to_gl/vk: Reorder vertex formats | |||
| 2020-06-30 | macro: Add support for "middle methods" on the code cache (#4112) | David | |
| Macro code is just uploaded sequentially from a starting address, however that does not mean the entry point for the macro is at that address. This PR adds preliminary support for executing macros in the middle of our cached code. | |||
| 2020-06-29 | Merge pull request #4182 from Kewlan/fullscreen-hotkey-fix | bunnei | |
| hotkeys: Fix issues caused when changing the fullscreen hotkey | |||
| 2020-06-29 | common: add sysconf() fallback | Jan Beich | |
| src/common/memory_detect.cpp:15:10: fatal error: 'sys/sysinfo.h' file not found #include <sys/sysinfo.h> ^~~~~~~~~~~~~~~ | |||
| 2020-06-29 | maxwell_to_gl: Rename VertexType() to VertexFormat() | Morph | |
| 2020-06-29 | cmake: fix fmt linking | John Galt | |
| On gcc/ld, and clang/lld, fmt::v6 symbols are excluded, so linking fails. This fixes the issue. Note: This was included in the FindBoost changes I shared with BlinkHawk, however only they were merged. I'm not sure if it was missed, or if there was an issue with this part of the change. | |||
| 2020-06-29 | Merge pull request #4140 from ReinUsesLisp/validation-layers | Rodrigo Locatti | |
| renderer_vulkan: Update validation layer name and test before enabling | |||
| 2020-06-29 | Remove duplicate functions | VolcaEM | |
| 2020-06-29 | Use decimal instead of hexadecimal | VolcaEM | |
| Co-authored-by: David <25727384+ogniK5377@users.noreply.github.com> | |||
| 2020-06-29 | Fix typo | VolcaEM | |
| 2020-06-29 | Clang-format | VolcaEM | |
| 2020-06-29 | service: Update function tables | VolcaEM | |
| 2020-06-28 | core_timing,scheduler: Use std::scoped_lock when possible | ReinUsesLisp | |
| Simplifies the cognitive load of procedures using locks and makes locks safe against exceptions. | |||
| 2020-06-28 | Merge pull request #3955 from FernandoS27/prometheus-2b | bunnei | |
| Remake Kernel Scheduling, CPU Management & Boot Management (Prometheus) | |||
| 2020-06-28 | ldr: Cleanup NRO & NRR structs | David Marcec | |
| 2020-06-28 | Merge pull request #4026 from VolcaEM/ldr | David | |
| ldr: Update NRR/NRO structs | |||
| 2020-06-28 | Merge pull request #4184 from VolcaEM/patch-9 | David | |
| grc: Update function table | |||
| 2020-06-28 | Merge pull request #4185 from VolcaEM/patch-10 | David | |
| lbl: Update function table | |||
| 2020-06-28 | Merge pull request #4186 from VolcaEM/patch-11 | David | |
| ldn: Update function table | |||
| 2020-06-28 | Merge pull request #4187 from VolcaEM/patch-12 | David | |
| mig: Update function table | |||
| 2020-06-28 | Merge pull request #4188 from VolcaEM/patch-13 | David | |
| mm: Update function table | |||
| 2020-06-28 | Merge pull request #4189 from VolcaEM/patch-14 | David | |
| ncm: Update function table | |||
| 2020-06-28 | Merge pull request #4190 from VolcaEM/patch-15 | David | |
| nfc: Update function table | |||
| 2020-06-28 | Merge pull request #4183 from VolcaEM/patch-8 | David | |
| friend: Update function table | |||
| 2020-06-28 | maxwell_to_vk: Reorder vertex formats and add A2B10G10R10 for all types ↵ | Morph | |
| except float | |||
| 2020-06-28 | am: Stub GetIndirectLayerConsumerHandle | David Marcec | |
| Needed by Monster Hunter Generations Ultimate | |||
| 2020-06-28 | maxwell_to_gl: Add 32 bit component sizes to (un)signed scaled formats | Morph | |
| Add 32 bit component sizes to (un)signed scaled formats and group (un)signed normalized, scaled, and integer formats together. | |||
