You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project adds Runtime Compiled C++ to the Dear ImGui example using the GLFW and OpenGL backend. This enables us to edit the code at runtime and see the results live, without recompiling and restarting the project.
This is a cross platform project using CMake.
Runtime-Compiled C++ (RCC++) is a way to reliably make major changes to C++ code at runtime and see the results immediately. It's aimed at games development but could be useful in any industry where turnaround times are a bottleneck.
RCC++ is primarily designed to shorten iteration times in development - developers can build their project, run it, make changes during runtime and see the results in a few seconds.
The implementation consists in switching the event handling from polling to waiting for events. A power save variable counts a predefined number of frames after the last input has been received. When the countdown ends the application waits for further events, therefore saving power. If input is received the countdown is reset. This allows the GUI to display input changes and for immediate mode states to propagate.
Though not shown in the example, any graphical application can also track when updates are in progress and temporarily disable power saving (for example by resetting the power save countdown). The example sets the swap interval to 1; if the application sets the swap interval to 0 (for example for low latency gaming), another power saving feature would be to set this to 1 when the user is interacting with the GUI.
Getting the code
The easiest way to get hold of the starter code is to run the following command using a shell you can run git from:
If you are on Windows you can download git from git-scm.com/download/win and use the right click menu in Windows File Explorer to "Git Bash here" and then run git commands.
This will create the directory RCCpp-DearImGui-GLFW-example and get the latest source code, using the --recursive option to download the RuntimeCompiledCPlusPlus, Dear ImGui and GLFW code, which have been included in the tutorial repository as submodules. If you want to run further git commands from the command line you'll need to cd into the directory:
cd RCCpp-DearImGui-GLFW-example
Alternatively you can use a git GUI program such as Fork to get the code. Most of these will automatically download the git submodules.
If you download the code from GitHub via the "Download ZIP" approach, you'll also need to download the RuntimeCompiledCPlusPlus, Dear ImGui and GLFW into the RuntimeCompiledCPlusPlus, imgui and glfw directories. The correct version can be found by clicking on the RuntimeCompiledCPlusPlus, imgui and glfw folders you see on the front page of the RCCpp-DearImGui-GLFW-example GitHub repository.
Using CMake to create the project
From a command prompt in the RCCpp-DearImGui-GLFW-example directory:
mkdir build
cd build
cmake ..
Either run make all or for Visual Studio open RCCpp-DearImGui-GLFW-example.sln
The RCCpp-DearImGui-GLFW-example Window should open.
About
Add Runtime Compiled C++ to the Dear ImGui example using the GLFW and OpenGL backend - with power saving