core: Namespace EmuWindow

Gets the class out of the global namespace.
This commit is contained in:
Lioncash
2018-08-11 20:20:19 -04:00
parent 403dfd68fc
commit 0a93b45b6a
14 changed files with 44 additions and 22 deletions

View File

@ -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