video_core: Move OpenGL specific utils to its renderer

This commit is contained in:
ReinUsesLisp
2018-10-28 21:54:08 -03:00
parent b5f8a5f0a3
commit 80cbd81276
6 changed files with 61 additions and 30 deletions

View File

@ -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