mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-02-09 20:04:47 +01:00
29 lines
515 B
C++
Executable File
29 lines
515 B
C++
Executable File
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace Core::Frontend {
|
|
class EmuWindow;
|
|
}
|
|
|
|
namespace Tegra {
|
|
class GPU;
|
|
}
|
|
|
|
namespace VideoCore {
|
|
|
|
class RendererBase;
|
|
|
|
/// Creates an emulated GPU instance using the given system context.
|
|
std::unique_ptr<Tegra::GPU> CreateGPU(Core::Frontend::EmuWindow& emu_window, Core::System& system);
|
|
|
|
} // namespace VideoCore
|