summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/utils.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2018-10-29 01:54:08 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2018-10-29 02:22:30 +0100
commit80cbd812761d5f520632572bcbcc15c8582a2ddc (patch)
tree12481bb34b5b8ebd27baf409b2a2c2879f658323 /src/video_core/renderer_opengl/utils.h
parentMerge pull request #1607 from FearlessTobi/patch-3 (diff)
downloadyuzu-80cbd812761d5f520632572bcbcc15c8582a2ddc.tar
yuzu-80cbd812761d5f520632572bcbcc15c8582a2ddc.tar.gz
yuzu-80cbd812761d5f520632572bcbcc15c8582a2ddc.tar.bz2
yuzu-80cbd812761d5f520632572bcbcc15c8582a2ddc.tar.lz
yuzu-80cbd812761d5f520632572bcbcc15c8582a2ddc.tar.xz
yuzu-80cbd812761d5f520632572bcbcc15c8582a2ddc.tar.zst
yuzu-80cbd812761d5f520632572bcbcc15c8582a2ddc.zip
Diffstat (limited to 'src/video_core/renderer_opengl/utils.h')
-rw-r--r--src/video_core/renderer_opengl/utils.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/utils.h b/src/video_core/renderer_opengl/utils.h
new file mode 100644
index 000000000..1fcb6fc11
--- /dev/null
+++ b/src/video_core/renderer_opengl/utils.h
@@ -0,0 +1,15 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <string>
+#include <glad/glad.h>
+#include "common/common_types.h"
+
+namespace OpenGL {
+
+void LabelGLObject(GLenum identifier, GLuint handle, VAddr addr, std::string extra_info = "");
+
+} // namespace OpenGL \ No newline at end of file