Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-16 | Texture Cache: Implement Rescaling on Aliases and Blits. | Fernando Sahmkow | |
2021-11-16 | Fix blits with mips | ReinUsesLisp | |
2021-11-16 | Fix blits | ReinUsesLisp | |
2021-11-16 | renderer_gl: Resolution scaling fixes | ameerj | |
2021-11-16 | TextureCache: Fix rescaling of ImageCopies | Fernando Sahmkow | |
2021-11-16 | TextureCache: Modify Viewports/Scissors according to Rescale. | Fernando Sahmkow | |
2021-11-16 | Settings: eliminate rescaling_factor. | Fernando Sahmkow | |
2021-11-16 | Texture Cache: More rescaling fixes. | Fernando Sahmkow | |
2021-11-16 | gl_texture_cache: WIP texture rescale | ameerj | |
2021-11-16 | Texture Cache: Implement Vulkan UpScaling & DownScaling | Fernando Sahmkow | |
2021-11-16 | ShaderDecompiler: Add initial support for rescaling. | Fernando Sahmkow | |
2021-11-16 | Settings: Add resolution scaling to settings. | Fernando Sahmkow | |
2021-11-16 | VideoCore: Initial Setup for the Resolution Scaler. | Fernando Sahmkow | |
2021-11-14 | Merge pull request #7326 from ameerj/vp8 | Fernando S | |
codecs: Implement VP8 video decoding support | |||
2021-11-14 | Merge pull request #7260 from vonchenplus/spirv_support_legacy_attribute_v2 | bunnei | |
shader: Spirv support legacy attribute v2 | |||
2021-11-13 | Merge pull request #7272 from behunin/the-courteous-logger | bunnei | |
Logging: Impl refactor | |||
2021-11-12 | codes: Rename ComposeFrameHeader to ComposeFrame | ameerj | |
These functions were composing the entire frame, not just the headers. Rename to more accurately describe them. | |||
2021-11-12 | vp8: Implement header composition | ameerj | |
Enables frame decoding with FFmpeg | |||
2021-11-12 | codecs: Add VP8 codec class | ameerj | |
2021-11-10 | program_metadata: Add default ThreadInfo kernel capability | OatmealDome | |
2021-11-08 | applets/swkbd: Fix text check message encoding | Morph | |
The text check message can be encoded in UTF-8. | |||
2021-11-08 | applets/swkbd: Skip text checking if the text has been confirmed | Morph | |
Confirm means that the text has already been checked by the application to be correct, but is asking the user for confirmation. The confirmation text itself seems to be corrupted though, this needs to be investigated. Fixes the software keyboard in Famicom Detective Club: The Missing Heir | |||
2021-11-05 | service/pctl: Stub EndFreeCommunication | Narr the Reg | |
- Used by Just Dance 2022 | |||
2021-11-05 | vulkan_device: Add missing vulkan image format R5G6B5 in GetFormatProperties | Feng Chen | |
- Used by Dragon Quest Builders | |||
2021-11-04 | Merge pull request #7279 from Morph1984/system-get-program-id | Morph | |
general: Get the current process program id directly from the system | |||
2021-11-04 | Merge pull request #7289 from ameerj/perf-stat-shutdown | Morph | |
core: Reorder perf_stats destruction order on Shutdown | |||
2021-11-04 | core: Reorder perf_stats destruction order on Shutdown | ameerj | |
Avoids the gpu_core using perf_stats after it's been freed. | |||
2021-11-05 | Merge pull request #7287 from Morph1984/stub-aoc | Fernando S | |
service: aoc: Stub more 13.x functions used by Animal Crossing | |||
2021-11-04 | general: Get the current process program id directly from the system | Morph | |
This allows us to avoid including KProcess' header file in files that only need to get the current process' program id. | |||
2021-11-04 | general: Rename GetTitleID to GetProgramID | Morph | |
2021-11-04 | Merge pull request #7282 from ameerj/core-includes | bunnei | |
core: Reduce unused header includes | |||
2021-11-04 | service: aoc: Stub NotifyUnmountAddOnContent | Morph | |
Used by Animal Crossing: New Horizons v2.0.0 DLC | |||
2021-11-04 | service: aoc: Stub NotifyMountAddOnContent and NotifyMountAddOnContent | Morph | |
Used by Animal Crossing: New Horizons v2.0.0 DLC | |||
2021-11-04 | service/acc: Rename Unknown160 to InitializeApplicationInfoV2 | german77 | |
2021-11-04 | service: acc: Stub acc:u0 '160' | Morph | |
- Used by Animal Crossing: New Horizons v2.0.0 Since the name is currently unknown, '160' is used as a placeholder. | |||
2021-11-03 | core: Fix transitive include build errors | ameerj | |
2021-11-03 | core: Remove unused includes | ameerj | |
2021-11-04 | Simply legacy attribute implement | Feng Chen | |
2021-11-02 | svc: Correct WaitSynchronization num_handles param type | Morph | |
num_handles is a s32 | |||
2021-11-02 | Merge pull request #7262 from ↵ | bunnei | |
FernandoS27/Buffalo-buffalo-Buffalo-buffalo-buffalo ShaderCache: Order Phi Arguments from farthest away to nearest. | |||
2021-11-02 | Merge pull request #7265 from Morph1984/gl-rasterizer-unused-include | Mai M | |
gl_rasterizer: Remove unused includes | |||
2021-11-02 | general: Remove MakeResult helpers | Morph | |
This is made obsolete by the presence of implicit constructors. | |||
2021-11-02 | hle/result: Amend ResultVal documentation | Morph | |
This amends the documentation slightly to reflect the updated interface. | |||
2021-11-02 | hle/result: Reimplement ResultVal using Common::Expected | Morph | |
Common::Expected effectively provides the same functions as ResultVal, so we can implement it with this. This can be replaced with std::expected with minimal effort should it be standardized in the C++ Standard Template Library. | |||
2021-11-02 | common: Implement a subset of P0323 (std::expected) | Morph | |
This implementation is based on and is a subset of the proposed implementation of std::expected https://github.com/TartanLlama/expected/blob/master/include/tl/expected.hpp | |||
2021-11-01 | Merge pull request #7227 from vonchenplus/fix_memory_leak_v2 | bunnei | |
Fix memory leak v2 | |||
2021-11-01 | Refactor Logging Impl | Levi Behunin | |
Loop on stop_token and remove final_entry in Entry. Move Backend thread out of Impl Constructor to its own function. Add Start function for backend thread. Use stop token in PopWait and check if entry filename is nullptr before logging. | |||
2021-11-02 | Shader Cahe: Fix Phi Nodes on GLASM. | Fernando Sahmkow | |
2021-11-01 | ShaderCache: Fix Phi Nodes Type on OGL. | Fernando Sahmkow | |
2021-10-31 | gl_rasterizer: Remove unused includes | Morph | |
This removes unused includes, especially the core includes which were causing this file to be recompiled every time files included by those headers are modified. |