diff options
| author | bunnei <bunneidev@gmail.com> | 2018-10-29 13:22:14 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-29 13:22:14 -0400 |
| commit | 0270906dbf6cc4f3de0340ada974fcefb297ace1 (patch) | |
| tree | 39b5222fb937ef8facb1997d6013836e8adb0675 /src/video_core/utils.h | |
| parent | 5d7167dfcaa033956612c2c95b6fca0ff4aa3f8c (diff) | |
| parent | 80cbd812761d5f520632572bcbcc15c8582a2ddc (diff) | |
Merge pull request #1613 from ReinUsesLisp/gl-utils
video_core: Move OpenGL specific utils to its renderer
Diffstat (limited to 'src/video_core/utils.h')
| -rw-r--r-- | src/video_core/utils.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/video_core/utils.h b/src/video_core/utils.h index 237cc1307..e0a14d48f 100644 --- a/src/video_core/utils.h +++ b/src/video_core/utils.h @@ -161,30 +161,4 @@ static inline void MortonCopyPixels128(u32 width, u32 height, u32 bytes_per_pixe } } -static 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 VideoCore |
