Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/advancedfx/imgui

Bloat-free Immediate Mode Graphical User interface for C++ with minimal dependencies
https://github.com/advancedfx/imgui

Merge branch 'master' into navigation

# Conflicts:
# imgui.cpp

b618629d9927ee8230748176bb64b74086671c92 authored about 7 years ago
Menu bar: better software clipping to handle small windows, in particular child window don't have the minimum constraint added in e9a7e73bbaacec886f9b39130428b81b7f95bf16 so we need to render clipped menus better.

7d09a0ae9948f99504ec12d0e297d08cffec0d85 authored about 7 years ago
Tweak expression to be less weird (how did that ever happen?)

aafa6cece5b7eea039db5c56cb11032d9441be8b authored about 7 years ago
Merge pull request #1454 from elect86/patch-2

Tweak

3141df1459a380af897a5ce32939bb82583b3f54 authored about 7 years ago
Update imgui.cpp

21b456e5678c196c0fe242dc0e82cc22be5d1307 authored about 7 years ago
Merge branch 'master' into navigation

# Conflicts:
# imgui.cpp

68b26b48677b2b6d46a1a8cdcf490fcb7c44791a authored about 7 years ago
Fixed unreferenced variable warnings.

176d8fbe747d63ecf282480e258ad9a174816404 authored about 7 years ago
Internals: Added SplitterBehavior(). (#319)

302757447aa6f0eed177e6cb33de887242a6355e authored about 7 years ago
Begin: Fix border size latch when rounding uses Child or Popup value. (#707)

195abc3d178525d7d85f0629a6de2e7610692eca authored about 7 years ago
Merge branch 'master' into navigation

# Conflicts:
# imgui.cpp
# imgui_internal.h

2543807e56e1a500eac0bb956714c826b79ecdcc authored about 7 years ago
Exposed ImDrawCornerFlags, replaced occurences of ~0 with an explicit ImDrawCornerFlags_All. Inversed BotLeft (prev 1<<3, now 1<<2) and BotRight (prev 1<<2, now 1<<3).

3f5b2a3fe353ff29b1b15334964aaec4e7dff576 authored about 7 years ago
ImDrawList::AddImageRounded: removed PrimDistributeUV declaration, fixed coding style, restored argument order from original PR. (#845)

31683cfe343ceed744f02e76522a783862abb499 authored about 7 years ago
Demo: Tweaked Image() code.

3c5e64db782940588e5d7b61e05552126e85775b authored about 7 years ago
Color picker: Tweak vertex shading code, since we aren't shading between PrimReserve and PrimVert the code can be expressed more naturally. (#346)

7f447c8270e2baaa9dc08f98a3b4ecba42de28e8 authored about 7 years ago
Merge branch '2016-08-rounded-image' of https://github.com/thedmd/imgui into thedmd-2016-08-rounded-image

ba095f81a586600152964be265608e74f2c0856d authored about 7 years ago
Added comment to help people dealing with 58345b11e1a999ad3fb562a24aade7c6944e5a02 breakage (#707)

8c0f2e49466ad9d5e78e25aa05a61023a1fa2da4 authored about 7 years ago
Todo list update

e996286c38ff580f0c80c3b22775c785660fa3b6 authored about 7 years ago
Add AddImageRounded() to ImDrawList

79f07f6ff040f6bfbf6b86320bf417f1d495966b authored about 7 years ago
Add ShadeVertsLinearUV()

8b2d449b165f2214a088f8d0cd8a20b684e99787 authored about 7 years ago
Fix for drag and drop branch.

dc2768503f91b5d11e6cbb76fde873a53e3ccf7f authored about 7 years ago
Merge branch 'master' into drag_and_drop

92212b17aace16b61646b1a69fb0d546352f269f authored about 7 years ago
Merge branch 'master' into navigation

# Conflicts:
# imgui.cpp
# imgui_demo.cpp

9848a7023bfa301c40d093a567799ac5a3041cd9 authored about 7 years ago
Style Editor: Simplified settings also show PopupBorderSize as a checkbox. (#707, #1019)

28a31997b76c59dba9d6d2ba03c5c1cf7b3a6ce6 authored about 7 years ago
Style, Begin: removed ImGuiWindowFlags_ShowBorders window flag. Borders are now fully set up in the ImGuiStyle structure (see e.g. style.FrameBorderSize, style.WindowBorderSize). Use ImGui::ShowStyleEditor() to look them up. (#707, fix #819, #1031, ref #1019, ref #447)

abbf836fd09fa26449f97e130f3838b07d59733d authored about 7 years ago
Reorder fields for consistency.

c433bc971f679fbed8ce43d633bd365868395b02 authored about 7 years ago
Style: Tweaked border settings to homogenize a little how they look over different backgrounds. (#707)

f7fe8248054a255936f1d8ac2a8a00ebf190cd90 authored about 7 years ago
Style: renamed ImGuiCol_ChildWindowBg to ImGuiCol_ChildBg. (#707)

39137ccc3e78a55e7095acfd43f41b1da7d6fc32 authored about 7 years ago
fixed incomplete replacement of unsigned short with ImWchar in interface of ImFont::FindGlyph

022f8c2342610d92c9477c0ed18ec3c6bb861cd3 authored about 7 years ago
Minor tweak, removed extraneous empty destructor.

9886b09a0a0058c4ca0070349b5f7fa6b9e9ab43 authored about 7 years ago
TreePush with zero arguments was ambiguous. Resolved by making it call TreePush(const void*)

e605f217974de0487f5b16e968ada00620b7066d authored about 7 years ago
NewFrame() now asserts if neither Render or EndFrame have been called. Exposed EndFrame(). Made it legal to call EndFrame() more than one. (#1423 etc.)

9a44d447cd29096c74e38bec917015c0ee1ffaea authored about 7 years ago
NewFrame(): using literal strings in the most-frequently firing IM_ASSERT expression to increase the odd of programmers seeing them (especially those who don't use a debugger).

538a704143924c509d2397e9b99b619a641cca3e authored about 7 years ago
Merge pull request #1445 from franciscod/uninitialized_o3_werror

ImFontAtlas: Fix maybe-uninitialized warning.

9289e8055c593f3f5b5e1c8b34a506eac72a36a5 authored about 7 years ago
Demo: Fix warning "format not a string literal and no format arguments" for over-zealous compilers settings. (#1450, #1451)

4cdd998be8bdbdc71cdd911c9cc95cb31b058a04 authored about 7 years ago
Fixed Style merge for nav branch (#707, #787)

d323e8cca235ff0c04aa47662d6fa8fa9e69b890 authored about 7 years ago
Merge branch 'master' into navigation (with style breakable)

# Conflicts:
# imgui.cpp
# imgui_draw.cpp

d211a0e33896da09613ca87e24d9876ad06af952 authored about 7 years ago
Merge branch 'master' into drag_and_drop

4022ada8439efdfebecd429bee44890d14fdd1ed authored about 7 years ago
Added comment about TextUnformatted(). (#1450)

4daf377c9bc0bfaea44d176689c5b66818905867 authored about 7 years ago
Combo: Offset popup position by border size so that a double border isn't so visible. (#707)

8a7f03cbf9a64fc6c9bc6d6f90384a9e4a453999 authored about 7 years ago
Fix IsItemHovered() returning true for non-title bar hidden items that are clipped due to window collapsing logic. Fix 27fd1b913b7cbf1eafdffe6a6539a21776171cdf. (#823)

067605052df780a91b0356f28dd918e0d21d6dcf authored about 7 years ago
Style: Made changes to Classic style (!!!). Tweaked Dark style. (#707)

0e4f1df1a4d600059d9e4ba1821630b227992030 authored about 7 years ago
Style: Added a default StyleColorsLight(). (#707)

0a61b7195c4523f96bc7bfda670e6896711e8589 authored about 7 years ago
Internals: Renamed ImGuiWindow::Accessed to WriteAccessed.

6f7b1bf2e165ddb75ad325433386f2e1c904bd20 authored about 7 years ago
Style: Added PopupRounding setting. (#1112)

d7af1a218e163947ccd2992e5b59b5f551c32020 authored about 7 years ago
Style Editor: Using local storage so Save/Revert button made some more sense without code passing its storage. Tweaked layout, added horizontal scroll bar, Fixed Save/Revert button to be always accessible. (fix #1211)

1c41603b31d059b7ac27689de68c8d746e405126 authored about 7 years ago
Style: Removed ImGuiCol_ComboBg in favor of combo boxes using ImGuiCol_PopupBg for consistency. (#707)

58345b11e1a999ad3fb562a24aade7c6944e5a02 authored about 7 years ago
Demo: Tweaks.

e7e81b265d183245b5c8668fddf94ec0a5573e5a authored about 7 years ago
Style Editor: Sneakily adding a combo box to change colors (#707)

c1b5eab8685e9898e81819ea372be5886002b4d5 authored about 7 years ago
Style: Dark: Tweaks + setting BorderShadow correctly.

331eac511e7234db069660810cfe6ed2cdb8d609 authored about 7 years ago
Internals: Window minor internal renaming + added WindowRounding latch.

29e0078b6637e43b559048c33f8f7309d41f473e authored about 7 years ago
Style: renamed style.ChildWindowRounding to style.ChildRounding, ImGuiStyleVar_ChildWindowRounding to ImGuiStyleVar_ChildRounding.

bd4bc929ce133a60799892cb4272ace9fa598976 authored about 7 years ago
Merge pull request #1448 from codecat/minor-fixes

Examples: DirectX: fix wrong comment in dx implementation headers

4e62118b6134ad02fa8928541031c9ecbe615f18 authored about 7 years ago
Fix wrong comment in dx implementation headers

979fe30a6f4307fdc83b08a7e845370a766c761c authored about 7 years ago
Style: ScaleAllSizes() helper rounds down every values so they are aligned on integers.

da2be7bbdce1b0260330a8ee46df462101baf202 authored about 7 years ago
fix uninitialized atlas packing context

f5871c0b92c88a1c1bbb8eaeff29cf29ba7ffeac authored about 7 years ago
Columns: Added ImGuiColumnsFlags_GrowParentContentsSize to internal API to restore old content sizes behavior. (#1444, #125)

834fa52c8ed2af4cf9c34dc9d88279d425632294 authored about 7 years ago
Merge branch 'master' into drag_and_drop

7746dd104c5cb53a2372856899f2f8aafe4161d0 authored about 7 years ago
Merge branch 'master' into navigation

44c590393c728da9b223a0b39f42903df15c79dd authored about 7 years ago
Internals: Updating condition/allow flags with a function.

29d962069d3b90478244a398bb1754195f5b0ece authored about 7 years ago
Internals: Window: Store whether the windows has a close button (we need that info for window/tabs dropping preview calculation)

4ad414c8d45493f6282997c7930d1b7737ff9a63 authored about 7 years ago
Internals: Added BringWindowToFront(), BringWindowToBack() helpers.

7c4be0a000abfc6645f56f654794473d5d358940 authored about 7 years ago
Merge branch 'master' into navigation

6817f3a3d9c1bd5d02fbb284af91ee5f130ab3ac authored about 7 years ago
Windows with MenuBar have a larger minimum height to avoid artefacts (I fixed most of the vertical/horizontal artefacts, but the ones in rounded corners were too hard to fix).

e9a7e73bbaacec886f9b39130428b81b7f95bf16 authored about 7 years ago
Menu: Fixed minor rendering issues on the right size with rounded window when resizing a window small.

f36037b3845d45c445e75688b66bc4c85032dee6 authored about 7 years ago
Scrollbar: Minor graphical fix for when scrollbar don't have enough visible space to display the full grab.

9b82d9fbef1f8897503c035fe73753ab5557be67 authored about 7 years ago
Minor comments, tweaks

f5bdf443c9436c3585537bd6637a4bbbaa6be26f authored about 7 years ago
Make it possible to use SetNextWindowPos() on a child window. Useful internally.

5ea6e80da155e45d7e94b917966adb85fe992e3c authored about 7 years ago
Drag and drop: Standardizing payload types as defines. (#143)

5027311e7fc8f7e1d5d00ed68449d2010d351628 authored about 7 years ago
Merge branch 'master' into drag_and_drop

44b761b308c8c92df02ba0b3c0611fb6069f3904 authored about 7 years ago
Made it guaranteed by API that after calling Begin() the last Item represent the title bar. (#823)

27fd1b913b7cbf1eafdffe6a6539a21776171cdf authored about 7 years ago
Merge branch 'master' into drag_and_drop

ae060b1d67dd128adca4e98cfa46ec246cf4ff53 authored about 7 years ago
Merge branch 'master' into navigation

64031852de9722db43335f21a3ae9657b9f2cf73 authored about 7 years ago
Scrollbar flicker fix for menus/popups (fixes 4d00dd8326b288aa0ff87ad6de4975d0578cfd56 and 2df8fa95dfe3463ece78c56b02dc815c3e71331a). Hopefully right this time.

64e79035d5133cf15de41aab0ec9a43bcd4ad08a authored about 7 years ago
Columns: Clipping columns borders on Y axis on CPU because some GPU drivers appears to be unhappy with triangle spanning large regions (not sure why tbh). (#125)

Demo: Columns: Adding a billion of extra lines and using clipper.

6001d9c7a46f70bb029aa779c42fafd3c2b22652 authored about 7 years ago
Demo: Custom Rendering: Fixed clipping rectangle extruding out of parent window.

0858c3d7cbc208223563f52202cb0cccb970622b authored about 7 years ago
Drag and Drop: Added payload->IsPreview() to user can render their custom preview while handling overlapping drop targets. (#143)

ffad688fc8d5b957716cb873c1bfbd5c12839bbf authored about 7 years ago
Fixed build (3e06450d276eefcd7bb368badab67e766d5a5751 not meant for master branch, but ok)

852ece3a0e29a27771148c95fda51ba5e4e65e0c authored about 7 years ago
Merge branch 'master' into navigation

# Conflicts:
# imgui.cpp

2275cb8b8366f78f246a350e1dc37e0ee5bd103a authored about 7 years ago
Internals: Added ArrowButton() helper.

3e06450d276eefcd7bb368badab67e766d5a5751 authored about 7 years ago
Drag and Drop: Added internal BeginDragDropTargetCustom() convenient to avoid submitting dummy ItemAdd. (#143)

7908cce25f01c2e2dffe01732a7efc8a01055140 authored about 7 years ago
Fixed scrollbar flickering on/off when uncollapsing a window (fixes 2df8fa95dfe3463ece78c56b02dc815c3e71331a)

4d00dd8326b288aa0ff87ad6de4975d0578cfd56 authored about 7 years ago
io.OptNoCursorBlink -> io.OptCursorBlink (#1427)

30bf40195bc0d3e4668ddb39db25344a622593e4 authored about 7 years ago
Added io.OptNoCursorBlink option to disable cursor blinking. (#1427). Renamed io.OSXBehaviors to io.OptMacOSXBehaviors. Should affect users as the compile-time default is usually enough. (#473, #650)

669498ff26040636a27ea44a7129a223c9701601 authored about 7 years ago
Update README.md

a1c736fa6aec984c5b2b6421b196a82a38e20851 authored about 7 years ago
Added bindings

631bd8a9f8492778ddd10f4ed23f036c377f71fd authored about 7 years ago
Update documentation for extra fonts

161670418b00aef7207027cac208dc12eb45ff28 authored about 7 years ago
Clean g.WindowsById storage on shutdown.

9daac64ff810d5237e1256c9192a66b8aac06cef authored about 7 years ago
Merge branch 'master' into navigation

06075f20bad92ff9dea27837d452e032642d63b8 authored about 7 years ago
Begin: Fixed appending into a child window with a second Begin() from a different window stack querying the wrong window for the window->Collapsed test.

ba09de3a392fa3a0395aa3aa1101f1b90121cc0d authored about 7 years ago
ButtonBehavior: Fixed ImGuiButtonFlags_AllowOverlapMode to avoid temporarily activating widgets on click before they have been correctly double-hovered. (#319, #600)

8451855a3075b14b653a561c37a7ba3eb80431a9 authored about 7 years ago
Drag and Drop: Drop target rectangle goes out of clipping range (#143)

4b94738c7e64a7a912a72b373063b42a407ec1bd authored about 7 years ago
Drag and Drop: Allow NULL payload (since type only can be useful). (#143)

b1653cd361aa2acd632877829c6d55a859e39d20 authored about 7 years ago
Merge branch 'master' into navigation

a297cbafdb23c110c1ca1c30a3a47f7b1dff61a2 authored about 7 years ago
Fixed vertical scrollbar flickering/appearing, typically when manually resizing and using a pattern of filling available height (e.g. full sized BeginChild). THIS IS A GREAT FIX, this glitch was nasty and annoying (and yet somehow nobody reported it?). Hopefully haven't broken anything else...

2df8fa95dfe3463ece78c56b02dc815c3e71331a authored about 7 years ago
Minor tweaks/comments. Note that the reordering the one subtraction caused subtle havoc before the patch in 9ac8820ee2ad3b569b592519a50b6dad4607eb04.

a4cc3d4637f7aa3aac7c730c6d21370c8737a76f authored about 7 years ago
Fixed non-pixel aligned bounding box of window resize grip, / which triumphally led to any re-arrangement of operations inside the resize grip code outputting non-exact size_target values which led to unstable window position because clamping code uses size in a subtraction, etc etc. Lovely how a whole system can be made to act weird with a single bad input.

9ac8820ee2ad3b569b592519a50b6dad4607eb04 authored about 7 years ago
Drag and drop: Handle overlapping drag target priorities given their surface, which appears to make most sense for drag and drop operations.

b6504b8eee930cca4a98d36603273c407a69c135 authored about 7 years ago
Child window with MenuBar use regular WindowPadding.y so layout look consistent in child or in a regular window.

2ab27be3de2cb794f3be360f5031371460420527 authored about 7 years ago
ButtonBehavior: Fixed ImGuiButtonFlags_NoHoldingActiveID from incorrectly setting ActiveIdClickOffset, which probably have no known effect, but it is more correct this way. (#1418)

41862b8c0e9f651a253de45c2b7e982c19c9ea9d authored about 7 years ago
Internals: Remove requirement to define IMGUI_DEFINE_PLACEMENT_NEW (#1103)

aae52522c3d6ebd35dedb0f62e8e23cdc5768c1d authored about 7 years ago