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
Copy file name to clipboardExpand all lines: imgui.cpp
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -176,7 +176,7 @@ CODE
176
176
- When using Dear ImGui, your programming IDE is your friend: follow the declaration of variables, functions and types to find comments about them.
177
177
- Dear ImGui never touches or knows about your GPU state. The only function that knows about GPU is the draw function that you provide.
178
178
Effectively it means you can create widgets at any time in your code, regardless of considerations of being in "update" vs "render"
179
-
phases of your own application. All rendering informatioe are stored into command-lists that you will retrieve after calling ImGui::Render().
179
+
phases of your own application. All rendering information are stored into command-lists that you will retrieve after calling ImGui::Render().
180
180
- Refer to the bindings and demo applications in the examples/ folder for instruction on how to setup your code.
181
181
- If you are running over a standard OS with a common graphics API, you should be able to use unmodified imgui_impl_*** files from the examples/ folder.
0 commit comments