summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Morph2021-10-31 23:57:51 -0400
committerGravatar Morph2021-10-31 23:57:51 -0400
commitd607ceacf4e08511eaf843830b511263a07ddba0 (patch)
tree7c6640bc1bb56409970e6b877acefd44f5e2e858
parentMerge pull request #7246 from german77/userimage (diff)
downloadyuzu-d607ceacf4e08511eaf843830b511263a07ddba0.tar.gz
yuzu-d607ceacf4e08511eaf843830b511263a07ddba0.tar.xz
yuzu-d607ceacf4e08511eaf843830b511263a07ddba0.zip
gl_rasterizer: Remove unused includes
This removes unused includes, especially the core includes which were causing this file to be recompiled every time files included by those headers are modified.
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp
index b909c387e..a6d9f7c43 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer.cpp
+++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp
@@ -10,16 +10,14 @@
10#include <string_view> 10#include <string_view>
11#include <tuple> 11#include <tuple>
12#include <utility> 12#include <utility>
13
13#include <glad/glad.h> 14#include <glad/glad.h>
14#include "common/alignment.h" 15
15#include "common/assert.h" 16#include "common/assert.h"
16#include "common/logging/log.h" 17#include "common/logging/log.h"
17#include "common/math_util.h" 18#include "common/math_util.h"
18#include "common/microprofile.h" 19#include "common/microprofile.h"
19#include "common/scope_exit.h"
20#include "common/settings.h" 20#include "common/settings.h"
21#include "core/core.h"
22#include "core/hle/kernel/k_process.h"
23#include "core/memory.h" 21#include "core/memory.h"
24#include "video_core/engines/kepler_compute.h" 22#include "video_core/engines/kepler_compute.h"
25#include "video_core/engines/maxwell_3d.h" 23#include "video_core/engines/maxwell_3d.h"