2018-10-28 17:54:08 -07:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-05-24 20:32:01 -07:00
|
|
|
#include <string_view>
|
2019-04-05 14:31:24 -07:00
|
|
|
#include <vector>
|
2018-10-28 17:54:08 -07:00
|
|
|
#include <glad/glad.h>
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace OpenGL {
|
|
|
|
|
2019-05-24 20:32:01 -07:00
|
|
|
void LabelGLObject(GLenum identifier, GLuint handle, VAddr addr, std::string_view extra_info = {});
|
2018-10-28 17:54:08 -07:00
|
|
|
|
2019-05-07 07:57:16 -07:00
|
|
|
} // namespace OpenGL
|