diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-08-11 20:20:19 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-08-11 20:20:21 -0400 |
| commit | 0a93b45b6a2662c69320e6c69f8024e26909a168 (patch) | |
| tree | a16166777acb3d5af7915496827408e1ec7025bd /src/video_core/video_core.h | |
| parent | 403dfd68fc41cec2261915d1647305c016a93440 (diff) | |
core: Namespace EmuWindow
Gets the class out of the global namespace.
Diffstat (limited to 'src/video_core/video_core.h')
| -rw-r--r-- | src/video_core/video_core.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/video_core.h b/src/video_core/video_core.h index 2dc07540f..f79f85dfe 100644 --- a/src/video_core/video_core.h +++ b/src/video_core/video_core.h @@ -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 |
