diff options
author | Fernando Sahmkow <[email protected]> | 2023-04-30 17:14:06 +0200 |
---|---|---|
committer | Fernando Sahmkow <[email protected]> | 2023-05-07 23:46:12 +0200 |
commit | c6cac2ffaad4ac27f35cea25022d9c59c7ecfbf4 (patch) | |
tree | 0d71092cfad84e47a193917028200e2fc216f5e6 /src/video_core/rasterizer_download_area.h | |
parent | e58090c9c731701662d0824c2fd081467f21f5c3 (diff) | |
download | yuzu-mainline-c6cac2ffaad4ac27f35cea25022d9c59c7ecfbf4.tar.gz yuzu-mainline-c6cac2ffaad4ac27f35cea25022d9c59c7ecfbf4.zip |
GPU: Add Reactive flushing
Diffstat (limited to 'src/video_core/rasterizer_download_area.h')
-rw-r--r-- | src/video_core/rasterizer_download_area.h | 13 |
1 files changed, 13 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..771ce903d --- /dev/null +++ b/src/video_core/rasterizer_download_area.h @@ -0,0 +1,13 @@ +#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 |