summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-22 07:36:21 +0200
committerGitHub <noreply@github.com>2018-09-22 07:36:21 +0200
commit73eea616141b5a75722331e23d26fc7136001f83 (patch)
tree44292e996a93efd03854cca680b4202ec38a5949
parentMerge pull request #1376 from Subv/timestretch_trace (diff)
parentgl_state: Remove unused type alias (diff)
downloadyuzu-73eea616141b5a75722331e23d26fc7136001f83.tar
yuzu-73eea616141b5a75722331e23d26fc7136001f83.tar.gz
yuzu-73eea616141b5a75722331e23d26fc7136001f83.tar.bz2
yuzu-73eea616141b5a75722331e23d26fc7136001f83.tar.lz
yuzu-73eea616141b5a75722331e23d26fc7136001f83.tar.xz
yuzu-73eea616141b5a75722331e23d26fc7136001f83.tar.zst
yuzu-73eea616141b5a75722331e23d26fc7136001f83.zip
-rw-r--r--src/video_core/renderer_opengl/gl_state.cpp1
-rw-r--r--src/video_core/renderer_opengl/gl_state.h4
2 files changed, 1 insertions, 4 deletions
diff --git a/src/video_core/renderer_opengl/gl_state.cpp b/src/video_core/renderer_opengl/gl_state.cpp
index af99132ba..e5173e20a 100644
--- a/src/video_core/renderer_opengl/gl_state.cpp
+++ b/src/video_core/renderer_opengl/gl_state.cpp
@@ -4,6 +4,7 @@
#include <iterator>
#include <glad/glad.h>
+#include "common/assert.h"
#include "common/logging/log.h"
#include "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 e3e24b9e7..9a93029d8 100644
--- a/src/video_core/renderer_opengl/gl_state.h
+++ b/src/video_core/renderer_opengl/gl_state.h
@@ -7,12 +7,8 @@
#include <array>
#include <glad/glad.h>
-#include "video_core/engines/maxwell_3d.h"
-
namespace OpenGL {
-using Regs = Tegra::Engines::Maxwell3D::Regs;
-
namespace TextureUnits {
struct TextureUnit {