summaryrefslogtreecommitdiff
path: root/src/tests/video_core
AgeCommit message (Collapse)Author
2025-01-14Revert incorrect copyright attribution for non-contributed filesZephyron
- In commit b3facaa6bb30cdc39f2b7d632fef1e3bfeee7785, the copyright header was updated to include "Citron Homebrew Project" across multiple files, regardless of whether any contributions were made. - This commit removes the incorrect attribution and reverts the copyright header to its previous state. - Copyright attribution should only be added when meaningful contributions have been made to the file. - This commit ensures proper compliance with copyright standards and maintains correct attribution to the respective contributors. - Special thanks to Tachi for pointing out the need for these corrections and ensuring that proper attribution practices are followed.
2024-12-31chore: update project references and add Citron copyrightZephyron
- Replaced all references to the old project name with Citron. - Added Citron copyright information alongside existing notices in all files.
2024-01-25Merge pull request #12499 from Kelebek1/timeliamwhite
Rework time services
2024-01-24Rework time service to fix time passing offline.Kelebek1
2024-01-18Core: Eliminate core/memory dependancies.Fernando Sahmkow
2023-12-17Revert "video_core: use interval map for page count tracking"liamwhite
2023-12-14video_core: use interval map for page count trackingLiam
2023-05-07Buffer cache: always use async buffer downloads and fix regression.Fernando Sahmkow
2023-05-01BufferCache: Fixes and address feedbackFernando Sahmkow
2023-04-29Tests: Add memory tracker tests.Fernando Sahmkow
2023-02-08buffer_base: Partially revert changes from #9559ameerj
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"
2023-01-22Merge pull request #9555 from abouvier/catch2-updateliamwhite
tests: update catch2 to 3.0.1
2023-01-05BufferBase: Don't ignore GPU pages.Fernando Sahmkow
2023-01-05tests: update catch2 to 3.0.1Alexandre Bouvier
2022-10-25tests: fix for -WallAlexandre Bouvier
Fix #9123
2022-08-19code: dodge PAGE_SIZE #defineKyle Kienapfel
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
2022-04-23general: Convert source file copyright comments over to SPDXMorph
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.
2021-07-10Buffer Cache: Address Feedback.Fernando Sahmkow
2021-07-09Buffer Cache: Fix High Downloads and don't predownload on Extreme.Fernando Sahmkow
2021-02-13tests/buffer_base: Add cached CPU writes testsReinUsesLisp
Ensure the behavior of the previous commit in tests.
2021-01-13tests: Add unit tests for the GPU range tracking buffer containerReinUsesLisp
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.