Commit Graph

  • 375106b420 fix for GL ES 2 dawid 2019-10-24 16:54:48 +0200
  • ac82b46448 fix for GL ES 2 dawid 2019-10-24 16:48:00 +0200
  • 1c9fad335b GL version defines and runtime check dawid 2019-10-24 16:38:55 +0200
  • 0cbb96895a Merge branch 'master' into docking omar 2019-10-24 15:11:37 +0200
  • b82724e80d Revert "new optional define IMGUI_IMPL_OPENGL_VERSION" dawid 2019-10-24 14:44:32 +0200
  • 3c238ecae3 Move issue_template and pull_request_template to .github folder. omar 2019-10-24 11:26:45 +0200
  • d5b5a81946 GitHub Actions CI script for Windows/Linux/MacOS/iOS/Emscripten builds. Rokas Kupstys 2019-10-23 18:10:47 +0300
  • 24e9a6e92c Remove .travis.yml due to switching to github actions. Rokas Kupstys 2019-10-23 15:39:14 +0300
  • 11fddbe58b GitHub Actions CI script for Windows/Linux/MacOS/iOS/Emscripten builds. Rokas Kupstys 2019-10-23 18:10:47 +0300
  • c2acb7ee2a
    Merge 141a6ba355 into ec0e953cca NeroBurner 2019-10-23 21:47:53 +0200
  • aada08662d new optional define IMGUI_IMPL_OPENGL_VERSION dawid 2019-10-23 20:00:51 +0200
  • ec0e953cca Fixed a couple of subtle bounding box vertical positioning issues relating to text baseline alignment. The issue would generally manifest when laying out multiple items on a same line, with varying heights and text baseline offsets. (#2833) Some specific examples, e.g. a button with regular frame padding followed by another item with a multi-line label and no frame padding, such as: multi-line text, small button, tree node item, etc. The second item was correctly offset to match text baseline, and would interact/display correctly,but it wouldn't push the contents area boundary low enough. Note: previously the second parameter to ItemSize() was 0.0f was default, now -1.0f to signify "no text baseline offset request". If you have code using ItemSize() with an hardcoded zero you may need to change it. (+1 squashed commits) omar 2019-10-06 23:17:36 +0200
  • 43f876d65d Remove .travis.yml due to switching to github actions. Rokas Kupstys 2019-10-23 15:39:14 +0300
  • 75d540d336 Example: Emscripten: Fix for compilation (filesystem module is required) (#2734) Funto 2019-10-23 16:55:26 +0200
  • be9f1e8f00 ColorPicker: Fixed SV triangle gradient to block (broken in 1.73). (#2864, #2711). [@lewa-j] Alexey 2019-10-23 00:45:59 +0300
  • 72fa85dc66
    Fix SV triangle color Alexey 2019-10-23 00:45:59 +0300
  • 23c1ff4907 Removed redirecting functions/enums names that were marked obsolete in 1.52 (October 2017). - Begin() [old 5 args version] -> use Begin() [3 args], use SetNextWindowSize() SetNextWindowBgAlpha() if needed - IsRootWindowOrAnyChildHovered() -> use IsWindowHovered(ImGuiHoveredFlags_RootAndChildWindows) - AlignFirstTextHeightToWidgets() -> use AlignTextToFramePadding(); - SetNextWindowPosCenter() -> use SetNextWindowPos() with a pivot of (0.5f, 0.5f) - ImFont::Glyph -> use ImFontGlyph If you were still using the old names, read "API Breaking Changes" section of imgui.cpp to find out the new names or equivalent features, or see how they were implemented until 1.73. omar 2019-10-22 14:43:04 +0200
  • abc4c7c76c Clean up number rounding. Now it is more obvious what code is doing. Rokas Kupstys 2019-10-22 10:41:21 +0300
  • 048b73dfaa Various comments + Doc: Examples readme. Moved main menu bar code below menu bar code. omar 2019-10-21 16:12:46 +0200
  • f629ebccf9
    Merge branch 'docking' into docking metarutaiga 2019-10-22 01:56:36 +0800
  • 7b77cb3bb8 Backend: DX12: Fixed incorrect assert (#2851) omar 2019-10-21 13:38:33 +0200
  • 7dbae8a198
    Doc: Simplified Readme, removed FAQ index omar 2019-10-21 13:26:47 +0200
  • 9e3917e56a
    Docs: Initial draft of fonts documentation Scott 2019-10-20 13:07:10 -0700
  • 6ffee0e75e Backends: DX12: Added extra ID3D12DescriptorHeap parameter to ImGui_ImplDX12_Init() function. The value is unused in master branch but will be used by the multi-viewport features (docking branch). (#2851) + Using SafeRelease() in master. omar 2019-10-18 18:32:48 +0200
  • 6faad0c34f Backend: DX12: Amend 899e485. Fix memory leaks. Remove unused variable. (#2851) omar 2019-10-18 18:03:56 +0200
  • 05c1f2795a Add multi-viewports for DX12. (#2851) Ilya.Sevrikov 2019-10-17 16:53:43 +0300
  • eedc8f993f Examples: DX12: Using IDXGIDebug1::ReportLiveObjects() when DX12_ENABLE_DEBUG_LAYER is enabled. omar 2019-10-18 18:20:53 +0200
  • 7feccf9ab2 Merge branch 'master' into docking omar 2019-10-18 16:50:30 +0200
  • 4de32cc87e Backends: GLFW: Restore previously installed user callbacks in ImplGlfw when ImGui shuts down (#2836) malte-v 2019-10-18 16:25:18 +0200
  • 714fe29d1a Replace manual flooring with IM_FLOOR() macro. (#2850) Rokas Kupstys 2019-10-17 12:36:26 +0300
  • 53278be61f FAQ, Readme. Use = {} instead of = { 0 }, wasn't problematic because they were all static variables or one stack array not read. But hey. omar 2019-10-18 12:54:30 +0200
  • bc165df6fd Replace manual flooring with IM_FLOOR() macro. Rokas Kupstys 2019-10-17 12:36:26 +0300
  • 0d437cb0c8 Restore multi-viewports for DX12. Ilya.Sevrikov 2019-10-17 16:53:43 +0300
  • 9994f5bcbe Fixed more FAQ links, oops.. (#2848) omar 2019-10-16 11:28:45 +0200
  • 3bbc27ebd9 Fixed more FAQ links. (#2848) omar 2019-10-16 11:23:15 +0200
  • 5fc427a49e Improved and moved FAQ to docs/FAQ.md so it can be readable on the web. (#2848) omar 2019-10-16 11:03:41 +0200
  • 9d6b2b096b Ignore directories created by JetBrains IDEs. Rokas Kupstys 2019-10-15 15:48:46 +0300
  • 6892b81578 Remove trailing spaces from bunch of files. Rokas Kupstys 2019-10-15 16:20:27 +0300
  • c21fdabb43 Doc: Readme: moving contents to FAQ. omar 2019-10-15 13:00:04 +0200
  • a41f0b2df4 Inputs: Fixed a miscalculation in the keyboard/mouse "typematic" repeat delay/rate calculation, used by keys and e.g. repeating mouse buttons as well as the GetKeyPressedAmount() function. IMPORTANT: Renamed internal CalcTypematicPressedRepeatAmount to CalcTypematicRepeatAmount and reordered the t1, t0 arguments to t0, t1 !! If you were using a non-default value for io.KeyRepeatRate (previous default was 0.250), you can add +io.KeyRepeatDelay to it to compensate for the fix. The function was triggering on: 0.0 and (delay+rate*N) where (N>=1). Fixed formula responds to (N>=0). Effectively it made io.KeyRepeatRate behave like it was set to (io.KeyRepeatRate + io.KeyRepeatDelay). Fixed the code and altered default io.KeyRepeatRate,Delay from 0.250,0.050 to 0.300,0.050 to compensate. If you never altered io.KeyRepeatRate nor used GetKeyPressedAmount() this won't affect you. omar 2019-10-14 23:07:06 +0200
  • c7bdec7e18 InputText, Nav: Fixed Left!Right keys broken when activating Keyboard Navigation. (#787) Amend 892dfb1 omar 2019-10-14 22:43:04 +0200
  • 67e4cd5cc6 Comments, some logging for NavInitRequest debugging Moved OpenPopupOnItemClick() next to BeginPopupContextItem() omar 2019-10-14 14:08:56 +0200
  • 141a6ba355 ci: appveyor: build vulkan, opengl2/3, glfw, sdl NeroBurner-tux 2019-10-02 00:40:19 +0200
  • 78bda8caad ci: travis: use bionic, use cmake to build examples NeroBurner-tux 2019-10-01 20:46:41 +0200
  • f3d71996b7 ci: exit after first error NeroBurner-tux 2019-10-02 00:08:27 +0200
  • fe4f462582 examples: add cmake file to include all linux examples NeroBurner-tux 2019-10-01 23:28:39 +0200
  • d4e5efc5c9 example_glfw_opengl2: add cmake file NeroBurner-tux 2019-10-01 23:19:15 +0200
  • 164cd8fc21 example_glfw_opengl3: add cmake file NeroBurner-tux 2019-10-01 23:13:58 +0200
  • c6bed86c1b example_glfw_vulkan: update cmake file NeroBurner-tux 2019-10-01 21:52:55 +0200
  • 5db72818ca example_sdl_opengl2: add cmake file NeroBurner-tux 2019-10-01 23:41:14 +0200
  • 9d1b2ecf6b example_sdl_opengl3: add cmake file NeroBurner-tux 2019-10-01 23:39:57 +0200
  • b82151f4cb example_sdl_vulkan: add cmake file NeroBurner-tux 2019-10-01 20:45:58 +0200
  • a37ec90fd0 SDL: On wayland use SDL_GetMouseState NeroBurner-tux 2019-09-24 19:44:29 +0200
  • 1c58214741 examples: add glad for OpenGL 3.3 core NeroBurner-tux 2019-09-04 22:12:50 +0200
  • 8c4dcbfa45
    Diligent Engine omar 2019-10-12 17:56:32 +0200
  • 23eabd5991
    Emscripten omar 2019-10-12 17:41:56 +0200
  • 58411033e2
    Bindings omar 2019-10-12 17:21:11 +0200
  • 1c73a0c17e
    Bindings omar 2019-10-12 17:18:44 +0200
  • cba84df7b5
    Update README.md omar 2019-10-12 17:05:08 +0200
  • aeb6481499 InputText: Filter out Ascii 127 (DEL) emitted by low-level OSX layer, as we are using the Key value. (#2578) omar 2019-10-12 14:25:18 +0200
  • 9346cde64a Added link to Diligent Engine Egor Yusov 2019-10-11 08:37:28 -0700
  • 3f5f0f50bf Merged from upstream Egor Yusov 2019-10-11 08:10:08 -0700
  • fc10ba8d24 Amend f0238ece9c (#2817, #2818) omar 2019-10-11 14:20:04 +0200
  • 378035c6ff Fixed backspace handling on MacOS (fixed https://github.com/ocornut/imgui/issues/2817). Allow null view passing as parameter to ImGui_ImplOSX_NewFrame Egor Yusov 2019-09-30 21:16:30 -0700
  • bf746c4215 DragScalar, SliderScalar, InputScalar: Added p_ prefix to parameter that are pointers to the datato clarify how they are used, and more comments redirecting to the demo code. (#2844) omar 2019-10-11 12:03:43 +0200
  • c74dcb1f34 Merge branch 'master' into rpi Hinko Kocevar 2019-10-07 22:52:09 +0200
  • 361f68b8b3 support for Raspberry Pi with SDL and opengl ES 2.0 Hinko Kocevar 2019-10-07 22:49:32 +0200
  • 608fbb470c
    Merge pull request #2 from ocornut/master Hinko Kočevar 2019-10-07 22:46:43 +0200
  • 0dc2168799
    Clear g_InstalledCallbacks on shutdown and add changelog entry malte-v 2019-10-07 21:36:01 +0200
  • 8c7cbf6122 Code cleanup Alexey Galitsyn 2019-10-07 21:58:41 +0300
  • 76996aad7e
    Restore previously installed user callbacks in ImplGlfw when ImGui shuts down malte-v 2019-10-07 20:10:19 +0200
  • bf4880f6a2 Merge branch 'master' into docking omar 2019-10-07 19:14:37 +0200
  • 927472f5ff Combo: Added _NoMove flag to prevent window from docking, which has an effect in Docking branch (in Master was not noticeable as the Combo code kept repositioning the window). (#2835) omar 2019-10-07 19:14:08 +0200
  • 3b271b1847 Demo: Added simple item reordering demo in Widgets -> Drag and Drop section. (#2823, #143) [@rokups] omar 2019-10-07 17:52:31 +0200
  • 8aad3482a4 ImVector: Fixed index_from_ptr() not asserting when passed end() element. omar 2019-10-07 17:22:55 +0200
  • 323412dd23 Examples: Allegro5: updated build instructions for macOS Harris Brakmic 2019-10-06 13:02:01 +0200
  • 105056899a
    updated build instructions for allegro Harris Brakmic 2019-10-06 21:39:42 +0200
  • cbc3bd0778
    added build instructions for macOS Harris Brakmic 2019-10-06 13:02:01 +0200
  • 671a85496d Add README.md Alexey Galitsyn 2019-10-06 02:22:36 +0300
  • 051cc0c4ba Add example_osg_opengl3 Alexey Galitsyn 2019-10-06 00:49:05 +0300
  • 73fa6509a5 Internal: InputTextEx: tweaked a bit of code (should be a no-op) omar 2019-10-05 16:53:28 +0200
  • f1f321d3f6
    Update README.md omar 2019-10-05 16:07:00 +0200
  • e0c0e53edf Merge branch 'master' into docking omar 2019-10-04 19:22:42 +0200
  • ee3373d067 TreeNode: Fixed combination of ImGuiTreeNodeFlags_SpanFullWidth and ImGuiTreeNodeFlags_OpenOnArrow incorrectly locating the arrow hit position to the left of the frame. (#2451, #2438, #1897) omar 2019-10-04 19:21:29 +0200
  • ccb2a947a2 Internal: SliderBehaviorT: Condition '!is_decimal' is always true (#2828) domgho 2019-10-04 11:57:20 +0200
  • 71d46d7ced
    Condition '!is_decimal' is always true domgho 2019-10-04 09:20:45 +0200
  • 1425bec7a4 Demo: Text baseline demo tweaks. omar 2019-10-03 16:57:14 +0200
  • a6c3be4bda Internals: Tweaks to ItemSize() should be harmless. Added DebugDrawItemRect() helper. omar 2019-10-03 15:59:36 +0200
  • 892dfb1dea InputText, Nav: Fixed Home/End key broken when activating Keyboard Navigation. (#787) Small refactor of ActiveIdUsingXXX inputs flags toward a little more consistent system. (#2637) omar 2019-10-02 11:38:30 +0200
  • a2f3dcfc97 Added comment about SDL and SDL_INIT_GAMECONTROLLER. (#2809) omar 2019-10-02 11:38:30 +0200
  • 893056a209 Fix syntax typos in README (#2819) Denys Nahurnyi 2019-10-01 22:49:44 +0300
  • 0b820d7717 Fix syntax typos in README DenysNahurnyi 2019-10-01 21:23:17 +0300
  • 80d2b1bc97 Minor cleaning up in the high-plane Unicode support. Sam Hocevar 2019-10-01 13:48:06 +0200
  • f0238ece9c Fixed backspace handling on MacOS (fixed https://github.com/ocornut/imgui/issues/2817). Allow null view passing as parameter to ImGui_ImplOSX_NewFrame Egor Yusov 2019-09-30 21:16:30 -0700
  • eb5223276c
    Update README.md omar 2019-09-30 20:54:37 +0200
  • 0dad3f436b Fix harmless float calculation overflow. (#2813) omar 2019-09-30 15:16:30 +0200
  • c262276988 Version 1.74 WIP omar 2019-09-30 14:27:56 +0200
  • 775a0f166e UTF32 support improvements Sam Hocevar 2019-09-29 12:15:13 +0200
  • bafec37bd5
    Improve SetItemDefaultFocus scrolling domgho 2019-09-29 12:29:48 +0200
  • 853dac3c5f Merge remote-tracking branch 'cloudwu/unicode' into master. Sam Hocevar 2019-09-29 10:01:58 +0200