diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-10-29 01:54:08 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-10-29 02:22:30 +0100 |
commit | 80cbd812761d5f520632572bcbcc15c8582a2ddc (patch) | |
tree | 12481bb34b5b8ebd27baf409b2a2c2879f658323 /src/video_core/renderer_opengl/utils.cpp | |
parent | Merge pull request #1607 from FearlessTobi/patch-3 (diff) | |
download | yuzu-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.cpp')
-rw-r--r-- | src/video_core/renderer_opengl/utils.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/utils.cpp b/src/video_core/renderer_opengl/utils.cpp new file mode 100644 index 000000000..d84634cb3 --- /dev/null +++ b/src/video_core/renderer_opengl/utils.cpp @@ -0,0 +1,38 @@ +// Copyright 2014 Citra Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#include <string> +#include <fmt/format.h> +#include <glad/glad.h> +#include "common/common_types.h" +#include "video_core/renderer_opengl/utils.h" + +namespace OpenGL { + +void LabelGLObject(GLenum identifier, GLuint handle, VAddr addr, std::string extra_info) { + if (!GLAD_GL_KHR_debug) { + return; // We don't need to throw an error as this is just for debugging + } + const std::string nice_addr = fmt::format("0x{:016x}", addr); + std::string object_label; + + if (extra_info.empty()) { + switch (identifier) { + case GL_TEXTURE: + object_label = "Texture@" + nice_addr; + break; + case GL_PROGRAM: + object_label = "Shader@" + nice_addr; + break; + default: + object_label = fmt::format("Object(0x{:x})@{}", identifier, nice_addr); + break; + } + } else { + object_label = extra_info + '@' + nice_addr; + } + glObjectLabel(identifier, handle, -1, static_cast<const GLchar*>(object_label.c_str())); +} + +} // namespace OpenGL
\ No newline at end of file |