mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
cdbdf63ebe
This reverts merge request !17
16 lines
310 B
C++
16 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
|