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