Commit Graph

  • 8ead38c100 Clang: Reduce uses of __has_warning for overall sanity, as compilers are hostile to software targetting multiple compiler version. omar 2020-06-18 16:33:23 +0200
  • 704723744e Disabled latest overzealous warnings from Clang omar 2020-06-18 16:19:51 +0200
  • b1d8309abc Added ImGuiTabItemFlags_NoTooltip for individual Tab Item. Louis Schnellbach 2020-06-18 15:18:14 +0200
  • 078571b7a9 Popups: added comments, reorganized the functions in imgui.h ocornut 2020-06-16 23:05:01 +0200
  • 6e138504c1 Popups: Fix BeginPopupContextVoid() when clicking over the area made unavailable by a modal. (#1636) ocornut 2020-06-16 19:32:21 +0200
  • 37eb89371b Popups: Internals: Added IsAnyPopupOpen(). ocornut 2020-06-16 18:46:14 +0200
  • d31fe97f74 Popups: Fix an edge case where programatically closing a popup while clicking on its empty space would attempt to focus it and close other popups. (#2880) ocornut 2020-06-16 16:50:28 +0200
  • 1dfd0634cb Internals: Allow ItemHoverable() to be used with id==0 to facilitate high-level read-only hover test in widget code. ocornut 2020-06-15 19:06:20 +0200
  • 99ab521024 Renamed OpenPopupOnItemClick() to OpenPopupContextItem(). Kept inline redirection function (will obsolete). + Removed CalcItemRectClosestPoint() entry point ocornut 2020-06-15 22:06:45 +0200
  • c658cba22b Comments, reworded some !(xxx && xxx) complex expression to be a little less confusing. ocornut 2020-06-15 16:18:30 +0200
  • 90c0c0c163 Columns: Lower overhead on column switches and switching to background channel. (second attempt for 9b3ce49) omar 2020-06-13 15:48:05 +0200
  • d3b37180a3 ImDrawList: Fixed minor bug introduced in 1.75 where AddCircle() with 12 segments would generate an extra unrequired vertex. Ben Carter 2020-06-13 14:14:07 +0200
  • 885b52f0ed forgot file Leonixidas 2020-06-11 23:53:52 +0200
  • 94e5c579bf changing premake file and regenerated project files Leonixidas 2020-06-11 23:50:59 +0200
  • 2665288b30 Merge branch 'master' into docking ocornut 2020-06-11 11:36:38 +0200
  • a933cc4f4d Documentation update ocornut 2020-06-11 09:52:46 +0200
  • 64d8d302fb ImDrawList: Fixed VtxOffset change leading to unnecessary leading empty ImDrawCmd in certain cases. ocornut 2020-06-10 19:16:06 +0200
  • 16da8e6da6 Revert "Columns: Lower overhead on column switches and switching to background channel (some stress tests in debug builds went 3->2 ms). (#125)" ocornut 2020-06-10 17:54:19 +0200
  • 53f0f97273 Added FAQ entry about DPI. Added Japanese font loading example. ocornut 2020-06-09 17:29:26 +0200
  • 40b799023b Docs: Update fonts.md (#2861) + update all references to FONTS.txt ocornut 2020-06-09 16:29:00 +0200
  • a72754886f Docs: Initial draft of fonts documentation (#2861) Scott 2020-06-09 16:10:37 +0200
  • 9b3ce494fd Columns: Lower overhead on column switches and switching to background channel (some stress tests in debug builds went 3->2 ms). (#125) ocornut 2020-06-08 22:38:19 +0200
  • 84862ec78e ImDrawList, ImDrawListSplitter, Columns: Fixed an issue where changing channels with different TextureId, VtxOffset would incorrectly apply new settings to draw channels. (#3129, #3163) ocornut 2020-06-08 20:53:11 +0200
  • 3bef743df4 ImDrawList: Clarifying and guarateeing that CmdBuffer.back()->UserCallback should be always be NULL. ocornut 2020-06-08 19:06:55 +0200
  • b1f2eacdf3 ImDrawList: Prefixed internal functions with underscore, renamed UpdateClipRect() to _OnChangedClipRect(), UpdateTextureID() -> _OnChangedTextureID() ocornut 2020-06-08 18:38:23 +0200
  • e35a813d57 ImDrawList: Separating PrimXXX sections from more internals helper in the header file. ocornut 2020-06-08 18:35:13 +0200
  • 117d57df5b ImDrawList: Additional comments and extracted bits into ImDrawList::PopUnusedDrawCmd() ocornut 2020-06-08 18:21:10 +0200
  • a6bb047bab ImDrawList: Store header/current ImDrawCmd in instance to simplify merging code. Amend 0320e72, toward #3163, #3129 ocornut 2020-06-08 15:22:44 +0200
  • 57191fe3d0 Comments about limiting WindowRounding to a reasonable size. ocornut 2020-06-08 14:17:49 +0200
  • f6120f8e16 ImDrawList, ImDrawListSplitter, Columns: Fixed an issue where starting a split when current VtxOffset was not zero would lead to draw commands with wrong VtxOffset. (#259 ocornut 2020-06-06 21:31:31 +0200
  • 41f47c853b ImDrawList: Amend 0320e72 removed an unnecessary test. ocornut 2020-06-06 20:35:29 +0200
  • 8baa4ccff5 Merge branch 'master' into docking ocornut 2020-06-06 20:31:24 +0200
  • 0320e7257b ImDrawList: Small refactor to create empty command when beginning the frame, allowing to simplify some functions. ocornut 2020-06-06 20:25:56 +0200
  • 003153b3ac ImDrawList: Tweaks to make style consistent (using pointers, same local names). Added comments. Should be no-op. ocornut 2020-06-06 19:52:41 +0200
  • e22e3f300a ImDrawList: Fixed an issue when draw command merging or cancelling while crossing the VtxOffset boundary would lead to draw command being emitted with wrong VtxOffset value. (#3129, #3163, #3232) thedmd 2020-06-06 16:37:07 +0200
  • 78d5ccfb90 ImDrawList: PushColumnsBackground(): Fixed incorrect assert. (#3163) ocornut 2020-06-06 16:44:31 +0200
  • 6c8112e6b2
    Merge branch 'master' into gf-sdlwindow Giovanni Funchal 2020-06-06 15:35:04 +0100
  • 5af8a8c7e8 CI: Extra warnings for builds with Clang. Backends: OpenGL3: Fix sign conversion warnings. Rokas Kupstys 2020-06-05 13:04:55 +0300
  • dc49b14e29 Misc: Fix examples of using other OpenGL3 bindings in Makefiles. Rokas Kupstys 2020-06-05 14:47:49 +0300
  • 6eb66fbef3
    Backends: Win32: Cache the result of a windows version check. (#3283) Mark Jansen 2020-06-05 01:23:18 +0200
  • 09459a2204
    Backends: Win32: Cache the result of a windows version check. This is not expected to change while the application is running :) Mark Jansen 2020-06-05 01:10:31 +0200
  • dcedb28b30 Drop test code from DirectX11 main introduced in "Fix for draw list splitter generating incorrect vertex offsets when vertex count exceeds index size (#3129)" thedmd 2020-05-10 20:14:21 +0200
  • 625b29e6f1 Update assert condition as it is possible for PushClipRect() to merge drop empty commands. thedmd 2020-04-25 13:45:19 +0200
  • 3847b51ba8 Add dedicated update function for stale pre-cached draw commands. thedmd 2020-04-25 13:39:54 +0200
  • c66fd2f74a Always push new command if previous on had user callback. thedmd 2020-04-17 17:35:41 +0200
  • f48291b892 Thinking about it, we should check for texture ID mismatches too Ben Carter 2020-04-17 14:59:10 +0900
  • 0d94847af1 Fix for draw list splitter generating incorrect vertex offsets when vertex count exceeds index size (#3129) Ben Carter 2020-04-17 14:06:48 +0900
  • b6b3788076
    Merge 979be5f554 into 79fbab543d Chris Savoie 2020-06-04 20:31:19 +0300
  • 79fbab543d Minor fix to avoid undefined behavior sanitizer triggering (#3276) ocornut 2020-06-04 18:59:04 +0200
  • 53dfccbe4b imgui_freetype: Fix for rare case where FT_Get_Char_Index() succeed but FT_Load_Glyph() fails. (#618) ocornut 2020-06-04 17:53:41 +0200
  • 4e9016440f Adding premake file to docking branch of ImGui Leonixidas 2020-06-04 14:33:13 +0200
  • 5e976e9b05
    Title capitalization (#3280) omar 2020-06-03 22:04:14 +0200
  • 0ad81bb5ad added braces SergeyN 2020-06-03 18:54:08 +0200
  • 661e60b378 4char tabs SergeyN 2020-06-03 03:17:56 +0200
  • 13bdcc7af5 dx9 build fix SergeyN 2020-06-02 19:41:30 +0200
  • e70d828437 Buildfix SergeyN 2020-06-02 19:12:52 +0200
  • 49f02553e5 DPI for dx12 SergeyN 2020-06-02 19:07:29 +0200
  • a96a9c5d9b tabs to 4chars SergeyN 2020-06-03 03:00:34 +0200
  • 8687847e42 fixes triangle mess on the screen due to VtxOffset getting desynchronized with buffers state SergeyN 2020-05-15 03:43:06 +0200
  • 41e8837f59 Comments, adding some spacing in ImVec2() constructors. ocornut 2020-06-02 18:13:54 +0200
  • 687c24140f
    Merge 8565921cba into 3f26a07ee1 Chris Savoie 2020-05-29 12:20:21 +0300
  • b5ea9072d9
    Update imgui.cpp Isam_Ilyas29 2020-05-26 12:09:12 +0100
  • 645ca6b2ba Added GetContentRegionHeight isam-ilyas29 2020-05-26 11:37:27 +0100
  • 3f26a07ee1 Backends: OpenGL: Fixed loader auto-detection to not interfere with ES2/ES3 defines. (#3246) Giovanni Funchal 2020-05-21 12:49:06 +0100
  • 5d472c4895 Merge branch 'master' into docking + fixes for #3259 ocornut 2020-05-25 18:32:15 +0200
  • 5ddf60d8ce Commit to facilitate branches merges ocornut 2020-05-25 18:28:25 +0200
  • a06eb83359 Examples: GLFW+Vulkan, SDL+Vulkan: Fix for handling of minimized windows. (#3259) ocornut 2020-05-25 15:31:33 +0200
  • 0fe5170bc4 Viewports: Report minimized viewports as zero DisplaySize to be consistent with main branch + comments (#1542) ocornut 2020-05-25 16:28:55 +0200
  • 6b688561aa CI: Test building without C++ runtime on GCC/Clang. Rokas Kupstys 2020-05-25 13:25:22 +0300
  • bb2529dd48 Backends: SDL: Report a zero display-size when window is minimized, consistent with other backends. ocornut 2020-05-25 12:23:49 +0200
  • a056603d8b Backends: Vulkan: Rename internal helper ImGui_ImplVulkanH_CreateWindow to ImGui_ImplVulkanH_CreateOrResizeWindow ocornut 2020-05-25 12:05:11 +0200
  • 9c209d5a90 Minor amend 9028088 (#3261) ocornut 2020-05-25 11:42:20 +0200
  • 43f79aa210 Backends: OSX: import the glfw workaround to avoid missing mouse clicks. (#3261) Nicolas Burrus 2020-05-25 08:27:17 +0200
  • 39d17ca07f Examples: Apple: catch events from the right and other mouse buttons when using Cocoa. (#3260) Nicolas Burrus 2020-05-25 07:34:12 +0200
  • 055ee84cac imgui_impl_osx.mm: import the glfw workaround to avoid missing mouse clicks. Nicolas Burrus 2020-05-25 08:27:17 +0200
  • 9c8fca03b4 example_apple: catch events from the right and other mouse buttons when using Cocoa. Nicolas Burrus 2020-05-25 07:34:12 +0200
  • 86d19e7d3f
    Update main.cpp Thomas Richter 2020-05-25 01:44:34 +0100
  • b02e8d9042
    CI: rename script to vs-update-toolset Add comment in the script + in misc/README.txt Mark Jansen 2020-05-24 21:44:38 +0200
  • d29157ce58 Moved static array with non-trivial constructors outside of function seems to remove requirement of linking with libstdc++ on some compilers. omar 2020-05-24 12:32:31 +0200
  • 04d215d43e Improve window handling in the SDL backend Giovanni Funchal 2020-05-21 12:52:47 +0100
  • 871269b99e Cleanup OpenGL 3 loader detection Giovanni Funchal 2020-05-21 12:49:06 +0100
  • b3c9283167
    Win32: Remove references to DXSDK_DIR Silent 2020-05-18 23:31:12 +0200
  • ecb8a9fec6
    Win32: Link xinput9_1_0.dll by default Silent 2020-05-18 23:13:50 +0200
  • c8cde28cf3 IO: AddInputCharacters function ignore 0 input. (#3252) omar 2020-05-20 17:56:08 +0200
  • f44962c01a
    Backends: Allegro: Don't call AddInputCharacter if the pressed key has no character. (#3252) Espyo 2020-05-20 16:48:21 +0100
  • ca160a3b64 Backends: Allegro: Don't call AddInputCharacter if the pressed key has no character. Espyo 2020-05-20 16:28:03 +0100
  • 75bbbda645 Examples: Update comments to get SDL2 package with msys2's pacman (#3251) omar 2020-05-20 11:44:00 +0200
  • 976fe4c0fa
    CI: Remove hardcoded versions from update-toolset.ps1 Use regexes instead of searching for hardcoded versions Mark Jansen 2020-05-19 18:03:44 +0200
  • 6c02c9aa15
    CI: Move vcxproj fixup step to standalone update-toolset.ps1 script Mark Jansen 2020-05-19 17:55:11 +0200
  • 615e9ae345 Docking: Fix undocking (#3243), amend 7b3d3798 (#1738) ocornut 2020-05-18 15:08:47 +0200
  • 7c4f6e86f6
    Merge 29699d9eee into 417ac68f82 Loïc Molinari 2020-05-18 13:56:51 +0200
  • 417ac68f82 Internals: AddPolyline: Add spaces for consistency, renaming. ocornut 2020-05-18 11:55:36 +0200
  • 3b3af6b731 Docking: Fix extraneous function declaration (#3236) + moved some other declarations in imgui_internal to facilitate moving docking code. omar 2020-05-16 16:11:42 +0200
  • e4d8267188 Merge branch 'master' into docking omar 2020-05-15 11:21:29 +0200
  • e49262a45e Merge remote-tracking branch 'upstream/master' MouriNaruto 2020-05-16 00:05:17 +0800
  • b9ef8d92ef Update gdi backend. MouriNaruto 2020-05-16 00:05:12 +0800
  • 39c978f499
    Fix typo/bug introduced by 0679e056 (#3231, #3209, #1829, #946, #413) Mr. Metric 2020-05-15 01:51:51 -0700
  • 0b517732e7 fix typo from 0679e05677 Mr. Metric 2020-05-14 17:10:53 -0700
  • fa840b04af Mouse: Add support for tracking multiple clicks more than just double Chris Savoie 2020-05-14 15:24:51 -0700
  • 4b2038dfd7 [vulkan] Allow the user to specify custom Vulkan proc addresses. Chinmay Garde 2020-05-13 19:55:12 -0700