From dd35b4b18a69c02c3a22ba1a72504fbff69cfec0 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 21 Aug 2018 04:18:27 -0400 Subject: 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. --- src/video_core/renderer_opengl/gl_state.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/video_core/renderer_opengl/gl_state.h') diff --git a/src/video_core/renderer_opengl/gl_state.h b/src/video_core/renderer_opengl/gl_state.h index 219b65a8a..22b0b1e41 100644 --- a/src/video_core/renderer_opengl/gl_state.h +++ b/src/video_core/renderer_opengl/gl_state.h @@ -9,6 +9,8 @@ #include "video_core/engines/maxwell_3d.h" +namespace OpenGL { + using Regs = Tegra::Engines::Maxwell3D::Regs; namespace TextureUnits { @@ -163,3 +165,5 @@ public: private: static OpenGLState cur_state; }; + +} // namespace OpenGL -- cgit v1.2.3