10 lines
240 B
C
10 lines
240 B
C
|
// ImGuiTexInspect, a texture inspector widget for dear imgui
|
||
|
#pragma once
|
||
|
|
||
|
#include <stddef.h>
|
||
|
namespace ImGuiTexInspect
|
||
|
{
|
||
|
bool ImplOpenGL3_Init(const char *glsl_version = NULL);
|
||
|
void ImplOpenGl3_Shutdown();
|
||
|
} // namespace ImGuiTexInspect
|