Skip to content

Commit e20b901

Browse files
committed
Comments
1 parent 3ee2fac commit e20b901

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

imgui.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// See ImGui::ShowTestWindow() for sample code.
33
// Read 'Programmer guide' below for notes on how to setup ImGui in your codebase.
44
// Get latest version at https://github.com/ocornut/imgui
5+
// Releases change-log at https://github.com/ocornut/imgui/releases
56
// Developed by Omar Cornut and ImGui contributors.
67

78
/*
@@ -135,6 +136,7 @@
135136

136137
Occasionally introducing changes that are breaking the API. The breakage are generally minor and easy to fix.
137138
Here is a change-log of API breaking changes, if you are using one of the functions listed, expect to have to fix some code.
139+
Also read releases logs https://github.com/ocornut/imgui/releases for more details.
138140

139141
- 2015/07/18 (1.44) - fixed angles in ImDrawList::PathArcTo(), PathArcToFast() (introduced in 1.43) being off by an extra PI for no justifiable reason
140142
- 2015/07/14 (1.43) - add new ImFontAtlas::AddFont() API. For the old AddFont***, moved the 'font_no' parameter of ImFontAtlas::AddFont** functions to the ImFontConfig structure.
@@ -359,7 +361,7 @@
359361

360362
- tip: the construct 'IMGUI_ONCE_UPON_A_FRAME { ... }' will run the block of code only once a frame. You can use it to quickly add custom UI in the middle of a deep nested inner loop in your code.
361363
- tip: you can create widgets without a Begin()/End() block, they will go in an implicit window called "Debug"
362-
- tip: you can call Begin() multiple times with the same name during the same frame, it will keep appending to the same window.
364+
- tip: you can call Begin() multiple times with the same name during the same frame, it will keep appending to the same window. this is also useful to set yourself in the context of a window (to get/set other settings)
363365
- tip: you can call Render() multiple times (e.g for VR renders).
364366
- tip: call and read the ShowTestWindow() code for more example of how to use ImGui!
365367

@@ -375,7 +377,7 @@
375377
- window: background options for child windows, border option (disable rounding)
376378
- window: resizing from any sides? + mouse cursor directives for app.
377379
- window: get size/pos helpers given names (see discussion in #249)
378-
- window: a collapsed window can be stuck behing the main menu bar?
380+
- window: a collapsed window can be stuck behind the main menu bar?
379381
- scrolling: add horizontal scroll
380382
!- scrolling: allow immediately effective change of scroll if we haven't appended items yet
381383
- widgets: display mode: widget-label, label-widget (aligned on column or using fixed size), label-newline-tab-widget etc.

0 commit comments

Comments
 (0)