mirror of
https://github.com/azahar-emu/azahar
synced 2025-11-08 16:10:02 +01:00
18 lines
413 B
C++
18 lines
413 B
C++
// Copyright 2015 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
namespace Memory {
|
|
class MemorySystem;
|
|
}
|
|
|
|
namespace Service::Y2R {
|
|
struct ConversionConfiguration;
|
|
} // namespace Service::Y2R
|
|
|
|
namespace HW::Y2R {
|
|
void PerformConversion(Memory::MemorySystem& memory, Service::Y2R::ConversionConfiguration& cvt);
|
|
} // namespace HW::Y2R
|