Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #12499 from Kelebek1/time | liamwhite | 2024-01-25 | 1 | -1/+1 |
|\ | | | | | Rework time services | ||||
| * | Rework time service to fix time passing offline. | Kelebek1 | 2024-01-24 | 1 | -1/+1 |
| | | |||||
* | | Core: Eliminate core/memory dependancies. | Fernando Sahmkow | 2024-01-19 | 1 | -4/+3 |
|/ | |||||
* | Revert "video_core: use interval map for page count tracking" | liamwhite | 2023-12-18 | 1 | -3/+3 |
| | |||||
* | video_core: use interval map for page count tracking | Liam | 2023-12-15 | 1 | -3/+3 |
| | |||||
* | Buffer cache: always use async buffer downloads and fix regression. | Fernando Sahmkow | 2023-05-07 | 1 | -2/+2 |
| | |||||
* | BufferCache: Fixes and address feedback | Fernando Sahmkow | 2023-05-01 | 1 | -1/+3 |
| | |||||
* | Tests: Add memory tracker tests. | Fernando Sahmkow | 2023-04-29 | 2 | -549/+547 |
| | |||||
* | buffer_base: Partially revert changes from #9559 | ameerj | 2023-02-09 | 1 | -1/+1 |
| | | | | This fixes a regression where Yoshi's Crafted World (and potentially other titles) would enter an infinite loop when GPU Accuracy was set to "Normal" | ||||
* | Merge pull request #9555 from abouvier/catch2-update | liamwhite | 2023-01-23 | 1 | -1/+1 |
|\ | | | | | tests: update catch2 to 3.0.1 | ||||
| * | tests: update catch2 to 3.0.1 | Alexandre Bouvier | 2023-01-05 | 1 | -1/+1 |
| | | |||||
* | | BufferBase: Don't ignore GPU pages. | Fernando Sahmkow | 2023-01-05 | 1 | -1/+1 |
|/ | |||||
* | tests: fix for -Wall | Alexandre Bouvier | 2022-10-25 | 1 | -1/+1 |
| | | | Fix #9123 | ||||
* | code: dodge PAGE_SIZE #define | Kyle Kienapfel | 2022-08-20 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | | | | | | | Some header files, specifically for OSX and Musl libc define PAGE_SIZE to be a number This is great except in yuzu we're using PAGE_SIZE as a variable Specific example `static constexpr u64 PAGE_SIZE = u64(1) << PAGE_BITS;` PAGE_SIZE PAGE_BITS PAGE_MASK are all similar variables. Simply deleted the underscores, and then added YUZU_ prefix Might be worth noting that there are multiple uses in different classes/namespaces This list may not be exhaustive Core::Memory 12 bits (4096) QueryCacheBase 12 bits ShaderCache 14 bits (16384) TextureCache 20 bits (1048576, or 1MB) Fixes #8779 | ||||
* | general: Convert source file copyright comments over to SPDX | Morph | 2022-04-23 | 1 | -3/+2 |
| | | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later. | ||||
* | Buffer Cache: Address Feedback. | Fernando Sahmkow | 2021-07-10 | 1 | -1/+1 |
| | |||||
* | Buffer Cache: Fix High Downloads and don't predownload on Extreme. | Fernando Sahmkow | 2021-07-09 | 1 | -1/+1 |
| | |||||
* | tests/buffer_base: Add cached CPU writes tests | ReinUsesLisp | 2021-02-13 | 1 | -0/+76 |
| | | | | Ensure the behavior of the previous commit in tests. | ||||
* | tests: Add unit tests for the GPU range tracking buffer container | ReinUsesLisp | 2021-01-13 | 1 | -0/+473 |
Due to how error prone the container design is, this commit adds unit tests for it. Some tests taken from here are based on bugs from using this buffer container in games, so if we ever break it in the future in a way that might harm games, the tests should fail. |