1
0
Fork 0
forked from suyu/suyu
suyu/src/video_core/renderer_opengl/utils.h

17 lines
385 B
C++
Raw Normal View History

// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <string_view>
#include <vector>
#include <glad/glad.h>
#include "common/common_types.h"
namespace OpenGL {
void LabelGLObject(GLenum identifier, GLuint handle, VAddr addr, std::string_view extra_info = {});
2019-05-07 16:57:16 +02:00
} // namespace OpenGL