summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_shader_util.h
diff options
context:
space:
mode:
authorKevin Hartman <kevin@hart.mn>2014-08-21 09:27:53 +0200
committerKevin Hartman <kevin@hart.mn>2014-08-26 05:56:59 +0200
commitcbfd6b6e52e3b8c1d6324d86461f4e8aa240a756 (patch)
tree31355774610d25174521e88ca7dcebfe5bbfe715 /src/video_core/renderer_opengl/gl_shader_util.h
parentUpdate README.md to correct OS X typo (diff)
downloadyuzu-cbfd6b6e52e3b8c1d6324d86461f4e8aa240a756.tar
yuzu-cbfd6b6e52e3b8c1d6324d86461f4e8aa240a756.tar.gz
yuzu-cbfd6b6e52e3b8c1d6324d86461f4e8aa240a756.tar.bz2
yuzu-cbfd6b6e52e3b8c1d6324d86461f4e8aa240a756.tar.lz
yuzu-cbfd6b6e52e3b8c1d6324d86461f4e8aa240a756.tar.xz
yuzu-cbfd6b6e52e3b8c1d6324d86461f4e8aa240a756.tar.zst
yuzu-cbfd6b6e52e3b8c1d6324d86461f4e8aa240a756.zip
Diffstat (limited to 'src/video_core/renderer_opengl/gl_shader_util.h')
-rw-r--r--src/video_core/renderer_opengl/gl_shader_util.h13
1 files changed, 13 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
new file mode 100644
index 000000000..563f1015c
--- /dev/null
+++ b/src/video_core/renderer_opengl/gl_shader_util.h
@@ -0,0 +1,13 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <GL/glew.h>
+
+namespace ShaderUtil {
+
+GLuint LoadShaders(const char* vertex_file_path, const char* fragment_file_path);
+
+}