├── .github └── FUNDING.yml ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── JetBrainsMono-ExtraLight.ttf ├── LICENSE ├── README.md ├── _dependencies ├── DearImGui │ └── .gitkeep ├── glad │ └── .gitkeep └── glfw │ └── .gitkeep ├── conanfile.py ├── functions.cpp ├── functions.h ├── glfw-imgui.sublime-project ├── img └── screenshot.png ├── imgui-style.h ├── main.cpp ├── vcpkg-configuration.json └── vcpkg.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [retifrav] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /JetBrainsMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/JetBrainsMono-ExtraLight.ttf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/README.md -------------------------------------------------------------------------------- /_dependencies/DearImGui/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_dependencies/glad/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_dependencies/glfw/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/conanfile.py -------------------------------------------------------------------------------- /functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/functions.cpp -------------------------------------------------------------------------------- /functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/functions.h -------------------------------------------------------------------------------- /glfw-imgui.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/glfw-imgui.sublime-project -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /imgui-style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/imgui-style.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/main.cpp -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/retifrav/glfw-imgui-example/HEAD/vcpkg.json --------------------------------------------------------------------------------