| 2018-02-18 | 
                Examples: Allegro5, Marmalade: Moved bindings to parent folder. Renamed Allegro stuff from *A5_ to *Allegro5_
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | 
|---|---|
| 
                Examples: Added SDL, Vulkan examples to .sln file.
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                Examples: DirectX9: Reusing imgui_impl_win32, removed that code from imgui_impl_dx9
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                Examples: DirectX10: Reusing imgui_impl_win32, removed that code from imgui_impl_dx10
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                Examples: DirectX11: Extracted imgui_impl_dx11.* instead imgui_impl_dx11 and imgui_impl_win32
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                Examples: Vulkan: Extracted into imgui_impl_vulkan.*, reused imgui_impl_glfw* files.
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                Examples: SDL: Extracted into imgui_impl_sdl.*, reused imgui_impl_opengl* files.
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                Examples: OpenGL2, OpenGL3: Added glPixelStorei() calls borrowed from SDL examples.
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                Examples: GLFW+GL2: Moved glfw, gl2 files to root folder, split imgui_impl_glfw_gl2 into _opengl2 and reused imgui_impl_glfw
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                Examples: GLFW+GL3: Split imgui_impl_glfw_gl3 into imgui_impl_glfw and imgui_impl_gl3 (wip)
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                ImFontAtlas: Added IsBuilt() helper.
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 
                Merged a bunch of small inconsequential things from my work branch, to reduce the diff noise.
                
                 
                  
                  omar
                  committed 
  
    
      on 18 Feb 2018
    
  
                  
                 | |
| 2018-02-16 | 
                Nav: Tweak windowing highlighting for full viewport windows.
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | 
| 
                Examples: GLFW+GL2/GL3: Added glPixelStorei() calls borrowed from SDL examples.
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Examples: Renamed .sln file.
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Examples: Vulkan: Fix for empty draw data (init time) + fixed warning.
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Examples: Vulkan: Added .vcproj files.
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Examples: SDL: Fixed minor warning.
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Examples: SDL: Added .vcproj files.
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Examples: SDL: Minor stylistic tweaks. Fixed handling of ImGuiMouseCursor_None so it doesn't underflow array. Fixed harmless uninitialized pointer. (#1626)
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Renamed misleading ImGuiMouseCursor_Move to ImGuiMouseCursor_ResizeAll. SDL: Fixed cursor. (#1626)
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Use SDL system cursors in SDL examples. (#1626)
                
                  ...
                
                 
                  
                    Oliver Faircliff
                    authored 
  
    
      on 16 Feb 2018
    
  
                    
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Obsoleted the io.RenderDrawListsFn callback, you can call your graphics engine render function after ImGui::Render(). Use ImGui::GetDrawData() to retrieve the ImDrawData* to display..(#1599)
                
                  ...
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Examples: Added Changelog to make updates easier.
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Fixed GCC zealous warnings (#1623)
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Plot: plot a flat line if scale_min==scale_max (#1621)
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 
                Updated to stb_truetype 1.19 (include minor fix for #1622)
                
                 
                  
                  omar
                  committed 
  
    
      on 16 Feb 2018
    
  
                  
                 | |
| 2018-02-15 | 
                Examples: SDL: Added Changelog at the top of the imgui_impl files. (#1618)
                
                 
                  
                  omar
                  committed 
  
    
      on 15 Feb 2018
    
  
                  
                 | 
| 
                Update README.md
                
                 
                  
                    omar
                    authored 
  
    
      on 15 Feb 2018
    
  
                    
                  
                  GitHub
                  committed 
  
    
      on 15 Feb 2018
    
  
                  
                 | |
| 2018-02-14 | 
                Comments, moved ImFontAtlas::Flags to "public" area.
                
                 
                  
                  omar
                  committed 
  
    
      on 14 Feb 2018
    
  
                  
                 |