summaryrefslogtreecommitdiffstats
path: root/src/common/page_table.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-08-15common: Make use of [[nodiscard]] where applicableLioncash1-2/+2
Now that clang-format makes [[nodiscard]] attributes format sensibly, we can apply them to several functions within the common library to allow the compiler to complain about any misuses of the functions.
2020-04-17common: page_table: Update to use VirtualBuffer and simplify.bunnei1-28/+9
2020-03-14PageTable: move backing addresses to a children class as the CPU page table does not need them.Fernando Sahmkow1-2/+13
This PR aims to reduce the memory usage in the CPU page table by moving GPU specific parameters into a child class. This saves 1Gb of Memory for most games.
2019-03-21gpu: Rewrite virtual memory manager using PageTable.bunnei1-1/+5
2019-03-17core: Move PageTable struct into Common.bunnei1-0/+80