summaryrefslogtreecommitdiffstats
path: root/src/tests/video_core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #12499 from Kelebek1/timeliamwhite2024-01-251-1/+1
|\ | | | | Rework time services
| * Rework time service to fix time passing offline.Kelebek12024-01-241-1/+1
| |
* | Core: Eliminate core/memory dependancies.Fernando Sahmkow2024-01-191-4/+3
|/
* Revert "video_core: use interval map for page count tracking"liamwhite2023-12-181-3/+3
|
* video_core: use interval map for page count trackingLiam2023-12-151-3/+3
|
* Buffer cache: always use async buffer downloads and fix regression.Fernando Sahmkow2023-05-071-2/+2
|
* BufferCache: Fixes and address feedbackFernando Sahmkow2023-05-011-1/+3
|
* Tests: Add memory tracker tests.Fernando Sahmkow2023-04-292-549/+547
|
* buffer_base: Partially revert changes from #9559ameerj2023-02-091-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-updateliamwhite2023-01-231-1/+1
|\ | | | | tests: update catch2 to 3.0.1
| * tests: update catch2 to 3.0.1Alexandre Bouvier2023-01-051-1/+1
| |
* | BufferBase: Don't ignore GPU pages.Fernando Sahmkow2023-01-051-1/+1
|/
* tests: fix for -WallAlexandre Bouvier2022-10-251-1/+1
| | | Fix #9123
* code: dodge PAGE_SIZE #defineKyle Kienapfel2022-08-201-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 SPDXMorph2022-04-231-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 Sahmkow2021-07-101-1/+1
|
* Buffer Cache: Fix High Downloads and don't predownload on Extreme.Fernando Sahmkow2021-07-091-1/+1
|
* tests/buffer_base: Add cached CPU writes testsReinUsesLisp2021-02-131-0/+76
| | | | Ensure the behavior of the previous commit in tests.
* tests: Add unit tests for the GPU range tracking buffer containerReinUsesLisp2021-01-131-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.