2018-10-29 00:54:08 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <string>
|
2019-11-19 00:38:15 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2018-10-29 00:54:08 +00:00
|
|
|
#include <fmt/format.h>
|
|
|
|
#include <glad/glad.h>
|
2019-04-24 21:47:59 +00:00
|
|
|
|
2018-10-29 00:54:08 +00:00
|
|
|
#include "common/common_types.h"
|
2019-12-31 21:16:58 +00:00
|
|
|
#include "video_core/renderer_opengl/gl_state_tracker.h"
|
2018-10-29 00:54:08 +00:00
|
|
|
#include "video_core/renderer_opengl/utils.h"
|
|
|
|
|
|
|
|
namespace OpenGL {
|
|
|
|
|
2019-05-25 03:32:01 +00:00
|
|
|
void LabelGLObject(GLenum identifier, GLuint handle, VAddr addr, std::string_view extra_info) {
|
2018-10-29 00:54:08 +00:00
|
|
|
if (!GLAD_GL_KHR_debug) {
|
2019-05-25 03:32:01 +00:00
|
|
|
// We don't need to throw an error as this is just for debugging
|
|
|
|
return;
|
2018-10-29 00:54:08 +00:00
|
|
|
}
|
|
|
|
|
2019-05-25 03:32:01 +00:00
|
|
|
std::string object_label;
|
2018-10-29 00:54:08 +00:00
|
|
|
if (extra_info.empty()) {
|
|
|
|
switch (identifier) {
|
|
|
|
case GL_TEXTURE:
|
2019-05-25 03:32:01 +00:00
|
|
|
object_label = fmt::format("Texture@0x{:016X}", addr);
|
2018-10-29 00:54:08 +00:00
|
|
|
break;
|
|
|
|
case GL_PROGRAM:
|
2019-05-25 03:32:01 +00:00
|
|
|
object_label = fmt::format("Shader@0x{:016X}", addr);
|
2018-10-29 00:54:08 +00:00
|
|
|
break;
|
|
|
|
default:
|
2019-05-25 03:32:01 +00:00
|
|
|
object_label = fmt::format("Object(0x{:X})@0x{:016X}", identifier, addr);
|
2018-10-29 00:54:08 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
2019-05-25 03:32:01 +00:00
|
|
|
object_label = fmt::format("{}@0x{:016X}", extra_info, addr);
|
2018-10-29 00:54:08 +00:00
|
|
|
}
|
|
|
|
glObjectLabel(identifier, handle, -1, static_cast<const GLchar*>(object_label.c_str()));
|
|
|
|
}
|
|
|
|
|
2019-05-07 14:57:16 +00:00
|
|
|
} // namespace OpenGL
|