summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/maxwell_to_gl.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-21 10:18:27 +0200
committerLioncash <mathew1800@gmail.com>2018-08-22 12:14:47 +0200
commitdd35b4b18a69c02c3a22ba1a72504fbff69cfec0 (patch)
treedcae20ee477f4af3a66ffe9d0d5074f1f247a9f1 /src/video_core/renderer_opengl/maxwell_to_gl.h
parentMerge pull request #1136 from tech4me/master (diff)
downloadyuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar
yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.gz
yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.bz2
yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.lz
yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.xz
yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.tar.zst
yuzu-dd35b4b18a69c02c3a22ba1a72504fbff69cfec0.zip
Diffstat (limited to 'src/video_core/renderer_opengl/maxwell_to_gl.h')
-rw-r--r--src/video_core/renderer_opengl/maxwell_to_gl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/maxwell_to_gl.h b/src/video_core/renderer_opengl/maxwell_to_gl.h
index 0d55b3e17..0343759a6 100644
--- a/src/video_core/renderer_opengl/maxwell_to_gl.h
+++ b/src/video_core/renderer_opengl/maxwell_to_gl.h
@@ -10,6 +10,8 @@
#include "common/logging/log.h"
#include "video_core/engines/maxwell_3d.h"
+namespace OpenGL {
+
using GLvec2 = std::array<GLfloat, 2>;
using GLvec3 = std::array<GLfloat, 3>;
using GLvec4 = std::array<GLfloat, 4>;
@@ -360,3 +362,4 @@ inline GLenum LogicOp(Maxwell::LogicOperation operation) {
}
} // namespace MaxwellToGL
+} // namespace OpenGL