mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-03-21 01:53:15 +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
|