summaryrefslogtreecommitdiff
path: root/src/common/page_table.h
diff options
context:
space:
mode:
authorGravatar Kelebek12023-05-29 00:35:51 +0100
committerGravatar Kelebek12023-07-02 23:09:48 +0100
commit6f7cb69c94bef0795f054d881e061745f69d1eda (patch)
treecc0bec2fed92a5645886dde773add00c84d8b9f4 /src/common/page_table.h
parentMerge pull request #10998 from Morph1984/qt-stop-messing-with-me (diff)
downloadyuzu-6f7cb69c94bef0795f054d881e061745f69d1eda.tar.gz
yuzu-6f7cb69c94bef0795f054d881e061745f69d1eda.tar.xz
yuzu-6f7cb69c94bef0795f054d881e061745f69d1eda.zip
Use spans over guest memory where possible instead of copying data.
Diffstat (limited to 'src/common/page_table.h')
-rw-r--r--src/common/page_table.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/page_table.h b/src/common/page_table.h
index 1ad3a9f8b..fec8378f3 100644
--- a/src/common/page_table.h
+++ b/src/common/page_table.h
@@ -122,6 +122,7 @@ struct PageTable {
122 * corresponding attribute element is of type `Memory`. 122 * corresponding attribute element is of type `Memory`.
123 */ 123 */
124 VirtualBuffer<PageInfo> pointers; 124 VirtualBuffer<PageInfo> pointers;
125 VirtualBuffer<u64> blocks;
125 126
126 VirtualBuffer<u64> backing_addr; 127 VirtualBuffer<u64> backing_addr;
127 128