summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/utils.cpp
blob: d84634cb3042a6fcdd4a2919c1e924dbea948cc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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