Merge pull request #3508 from FernandoS27/page-table

PageTable: move backing addresses to a children class as the CPU page table does not need them.
This commit is contained in:
bunnei 2020-03-14 16:50:27 -04:00 committed by GitHub
commit 4dfd5c84ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 4 deletions

View file

@ -174,7 +174,7 @@ private:
/// End of address space, based on address space in bits.
static constexpr GPUVAddr address_space_end{1ULL << address_space_width};
Common::PageTable page_table{page_bits};
Common::BackingPageTable page_table{page_bits};
VMAMap vma_map;
VideoCore::RasterizerInterface& rasterizer;