mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 09:08:01 -05:00
core: Namespace EmuWindow
Gets the class out of the global namespace.
This commit is contained in:
@ -6,7 +6,9 @@
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace Core::Frontend {
|
||||
class EmuWindow;
|
||||
}
|
||||
|
||||
namespace VideoCore {
|
||||
|
||||
@ -18,6 +20,6 @@ class RendererBase;
|
||||
* @note The returned renderer instance is simply allocated. Its Init()
|
||||
* function still needs to be called to fully complete its setup.
|
||||
*/
|
||||
std::unique_ptr<RendererBase> CreateRenderer(EmuWindow& emu_window);
|
||||
std::unique_ptr<RendererBase> CreateRenderer(Core::Frontend::EmuWindow& emu_window);
|
||||
|
||||
} // namespace VideoCore
|
||||
|
Reference in New Issue
Block a user