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
|