summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-04-07 01:09:33 -0400
committerGravatar bunnei2018-04-13 23:48:23 -0400
commit2fcbb35ad22cd9d683c9839db9179f93f061f4e2 (patch)
treefe40c4955f47713356222da5947e7039cedd7909 /src
parentcommon: Port cityhash code from Citra. (diff)
downloadyuzu-2fcbb35ad22cd9d683c9839db9179f93f061f4e2.tar.gz
yuzu-2fcbb35ad22cd9d683c9839db9179f93f061f4e2.tar.xz
yuzu-2fcbb35ad22cd9d683c9839db9179f93f061f4e2.zip
gl_shader_util: Add missing includes.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/renderer_opengl/gl_shader_util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_util.h b/src/video_core/renderer_opengl/gl_shader_util.h
index 5a0008703..a1fa9e814 100644
--- a/src/video_core/renderer_opengl/gl_shader_util.h
+++ b/src/video_core/renderer_opengl/gl_shader_util.h
@@ -6,6 +6,8 @@
6 6
7#include <vector> 7#include <vector>
8#include <glad/glad.h> 8#include <glad/glad.h>
9#include "common/assert.h"
10#include "common/logging/log.h"
9 11
10namespace GLShader { 12namespace GLShader {
11 13