diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-08-21 04:18:27 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-08-22 06:14:47 -0400 |
| commit | dd35b4b18a69c02c3a22ba1a72504fbff69cfec0 (patch) | |
| tree | dcae20ee477f4af3a66ffe9d0d5074f1f247a9f1 /src/video_core/video_core.cpp | |
| parent | b38d67d940ddd4c03d833dc443126609e0981987 (diff) | |
renderer_opengl: Namespace OpenGL code
Namespaces all OpenGL code under the OpenGL namespace.
Prevents polluting the global namespace and allows clear distinction
between other renderers' code in the future.
Diffstat (limited to 'src/video_core/video_core.cpp')
| -rw-r--r-- | src/video_core/video_core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/video_core.cpp b/src/video_core/video_core.cpp index 6780d1c16..07e3a7d24 100644 --- a/src/video_core/video_core.cpp +++ b/src/video_core/video_core.cpp @@ -10,7 +10,7 @@ namespace VideoCore { std::unique_ptr<RendererBase> CreateRenderer(Core::Frontend::EmuWindow& emu_window) { - return std::make_unique<RendererOpenGL>(emu_window); + return std::make_unique<OpenGL::RendererOpenGL>(emu_window); } } // namespace VideoCore |
