Just a simple C++ demo using OpenGL and Dear ImGui.
It demonstrates basic 3D shapes, texture loading, and interactive UI controls.
- CMake
- GLFW
- GLEW
- GLM (included as a submodule)
- Dear ImGui (included as a submodule)
- ImGuiFileDialog (included as a submodule)
git clone --recursive https://github.com/VasilisMylonas/opengl_demo.git
cd opengl_demo
mkdir build && cd build
cmake ..
cmake --build .cd opengl_demo
./build/opengl_demoThe demo must be run from the project root directory to ensure fonts and shaders are found.
MIT License. See LICENSE for details.


