2014-04-08 16:04:25 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-16 21:38:14 -08:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 16:04:25 -07:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-05 13:04:25 -07:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-12-30 05:52:01 -08:00
|
|
|
#include <memory>
|
2015-05-18 21:21:33 -07:00
|
|
|
|
2019-01-15 11:28:42 -08:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2018-08-11 17:20:19 -07:00
|
|
|
namespace Core::Frontend {
|
2015-06-21 06:02:11 -07:00
|
|
|
class EmuWindow;
|
2018-08-11 17:20:19 -07:00
|
|
|
}
|
2014-04-05 13:04:25 -07:00
|
|
|
|
2019-04-09 11:02:00 -07:00
|
|
|
namespace Tegra {
|
|
|
|
class GPU;
|
|
|
|
}
|
|
|
|
|
2014-04-05 13:04:25 -07:00
|
|
|
namespace VideoCore {
|
|
|
|
|
2018-08-03 09:55:58 -07:00
|
|
|
class RendererBase;
|
2018-03-22 16:46:37 -07:00
|
|
|
|
2019-04-09 11:02:00 -07:00
|
|
|
/// Creates an emulated GPU instance using the given system context.
|
2020-03-24 19:58:49 -07:00
|
|
|
std::unique_ptr<Tegra::GPU> CreateGPU(Core::Frontend::EmuWindow& emu_window, Core::System& system);
|
2019-04-09 11:02:00 -07:00
|
|
|
|
2021-07-20 09:29:52 -07:00
|
|
|
float GetResolutionScaleFactor(const RendererBase& renderer);
|
2018-08-30 23:16:16 -07:00
|
|
|
|
2018-01-19 23:48:02 -08:00
|
|
|
} // namespace VideoCore
|