mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-01-09 16:03:21 +00:00
17 lines
310 B
C++
17 lines
310 B
C++
![]() |
// 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
|