summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_accelerated.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-08-20code: dodge PAGE_SIZE #defineKyle Kienapfel1-8/+9
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 SPDXMorph1-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.
2021-06-11rasterizer: Update pages in batchesReinUsesLisp1-15/+41
2021-05-27video_core: rasterizer_cache: Use u16 for cached page count.bunnei1-3/+3
- Greatly reduces the risk of overflow, at the cost of doubling the size of this array.
2021-03-13video_core: rasterizer_accelerated: Fix un/signed mismatch.bunnei1-1/+2
2021-03-03video_core: rasterizer_accelerated: Fix delta check ordering.bunnei1-3/+3
2021-03-03video_core: rasterizer_accelerated: Improve error handling & fix implicit conversion.bunnei1-4/+8
2021-03-03video_core: rasterizer_accelerated: Use a flat array instead of interval_map for cached pages.bunnei1-38/+13
- Uses a fixed 64MB for the cache instead of an ever growing map. - Slightly faster by using atomics instead of a single mutex for access. - Thanks for Rodrigo for the idea.
2020-04-17core: memory: Move to Core::Memory namespace.bunnei1-5/+5
- helpful to disambiguate Kernel::Memory namespace.
2019-12-11Added missing includeJoel Holdsworth1-0/+1
2019-11-27core/memory: Migrate over RasterizerMarkRegionCached() to the Memory classLioncash1-2/+2
This is only used within the accelerated rasterizer in two places, so this is also a very trivial migration.
2019-11-27core: Prepare various classes for memory read/write migrationLioncash1-1/+2
Amends a few interfaces to be able to handle the migration over to the new Memory class by passing the class by reference as a function parameter where necessary. Notably, within the filesystem services, this eliminates two ReadBlock() calls by using the helper functions of HLERequestContext to do that for us.
2019-10-27rasterizer_accelerated: Add intermediary for GPU rasterizersReinUsesLisp1-0/+63
Add an intermediary class that implements common functions across GPU accelerated rasterizers. This avoids code repetition on different backends.