summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_download_area.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/rasterizer_download_area.h')
-rw-r--r--src/video_core/rasterizer_download_area.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_download_area.h b/src/video_core/rasterizer_download_area.h
new file mode 100644
index 000000000..2d7425c79
--- /dev/null
+++ b/src/video_core/rasterizer_download_area.h
@@ -0,0 +1,16 @@
+// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#pragma once
+
+#include "common/common_types.h"
+
+namespace VideoCore {
+
+struct RasterizerDownloadArea {
+ VAddr start_address;
+ VAddr end_address;
+ bool preemtive;
+};
+
+} // namespace VideoCore \ No newline at end of file