Files
eden/src/video_core/video_core.h
T

28 lines
486 B
C++
Raw Normal View History

2022-05-15 02:06:02 +02:00
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2014-04-05 16:04:25 -04:00
#pragma once
#include <memory>
2015-05-18 21:21:33 -07:00
namespace Core {
class System;
}
2018-08-11 20:20:19 -04:00
namespace Core::Frontend {
2015-06-21 14:02:11 +01:00
class EmuWindow;
2018-08-11 20:20:19 -04:00
}
2014-04-05 16:04:25 -04:00
namespace Tegra {
class GPU;
}
2014-04-05 16:04:25 -04:00
namespace VideoCore {
class RendererBase;
2018-03-22 19:46:37 -04:00
/// Creates an emulated GPU instance using the given system context.
2020-03-24 20:58:49 -06:00
std::unique_ptr<Tegra::GPU> CreateGPU(Core::Frontend::EmuWindow& emu_window, Core::System& system);
} // namespace VideoCore