# This file a direct adaptation of an imgui example (imgui/examples/example_glfw_opengl3/main.cpp) # (see https://github.com/ocornut/imgui/blob/master/examples ...
// This needs to be used along with a Renderer (e.g. OpenGL3, Vulkan, WebGPU..) // (Info: GLFW is a cross-platform general purpose library for handling windows, inputs, OpenGL/Vulkan graphics context ...
ImGuiというライブラリを知っていますか? ImGuiはOpenGLやDirectXなどで使えるGUIライブラリです。 今回は、そのImGuiの使い方を紹介しようと思います。 ImGuiでできること ImGuiでは、ボタンやスライダー、画像などを出すことができます。 ImGuiの実装 今回は、OpemGL ...