mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-16 15:40:04 +00:00
13 lines
199 B
C++
13 lines
199 B
C++
|
#pragma once
|
||
|
|
||
|
#include "common/common_types.h"
|
||
|
|
||
|
namespace VideoCore {
|
||
|
|
||
|
struct RasterizerDownloadArea {
|
||
|
VAddr start_address;
|
||
|
VAddr end_address;
|
||
|
bool preemtive;
|
||
|
};
|
||
|
|
||
|
} // namespace VideoCore
|