6f90dff29
c6cac2ffa
e4915fb7d
1 2 3
4 5 6 7 8 9 10 11 12 13 14 15
16
// 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