diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-06-21 18:47:21 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-06-28 01:36:55 +0200 |
commit | f48b28ad271c6759868f55cc429e02098576857e (patch) | |
tree | f0b0cc678e91b43233bf8c62fb20a8db8ed5fd4a /src/video_core | |
parent | Core: Cleanup file_sys includes. (diff) | |
download | yuzu-f48b28ad271c6759868f55cc429e02098576857e.tar yuzu-f48b28ad271c6759868f55cc429e02098576857e.tar.gz yuzu-f48b28ad271c6759868f55cc429e02098576857e.tar.bz2 yuzu-f48b28ad271c6759868f55cc429e02098576857e.tar.lz yuzu-f48b28ad271c6759868f55cc429e02098576857e.tar.xz yuzu-f48b28ad271c6759868f55cc429e02098576857e.tar.zst yuzu-f48b28ad271c6759868f55cc429e02098576857e.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/renderer_opengl/renderer_opengl.cpp | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/video_core/renderer_opengl/renderer_opengl.cpp b/src/video_core/renderer_opengl/renderer_opengl.cpp index 3399ca123..9799f74fa 100644 --- a/src/video_core/renderer_opengl/renderer_opengl.cpp +++ b/src/video_core/renderer_opengl/renderer_opengl.cpp @@ -2,23 +2,26 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <algorithm> +#include <cstddef> +#include <cstdlib> + +#include "common/assert.h" +#include "common/emu_window.h" +#include "common/logging/log.h" +#include "common/profiler_reporting.h" + #include "core/hw/gpu.h" #include "core/hw/hw.h" #include "core/hw/lcd.h" #include "core/memory.h" #include "core/settings.h" -#include "common/emu_window.h" -#include "common/logging/log.h" -#include "common/profiler_reporting.h" - #include "video_core/video_core.h" #include "video_core/renderer_opengl/renderer_opengl.h" #include "video_core/renderer_opengl/gl_shader_util.h" #include "video_core/renderer_opengl/gl_shaders.h" -#include <algorithm> - /** * Vertex structure that the drawn screen rectangles are composed of. */ |