Skip to content

Commit 6513ba6

Browse files
authored
Merge pull request #1448 from MadLadSquad/auto
Update
2 parents e5c61a0 + e3882b5 commit 6513ba6

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Framework/ThirdParty/source-libraries/cimgui/cimgui.h

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// **DO NOT EDIT DIRECTLY**
33
// https://github.com/dearimgui/dear_bindings
44

5-
// dear imgui, v1.91.8 WIP
5+
// dear imgui, v1.91.8
66
// (headers)
77

88
// Help:
@@ -32,8 +32,8 @@
3232

3333
// Library Version
3434
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
35-
#define IMGUI_VERSION "1.91.8 WIP"
36-
#define IMGUI_VERSION_NUM 19173
35+
#define IMGUI_VERSION "1.91.8"
36+
#define IMGUI_VERSION_NUM 19180
3737
#define IMGUI_HAS_TABLE
3838
#define IMGUI_HAS_VIEWPORT // Viewport WIP branch
3939
#define IMGUI_HAS_DOCK // Docking WIP branch
@@ -1221,12 +1221,12 @@ typedef enum
12211221
ImGuiWindowFlags_NoInputs = ImGuiWindowFlags_NoMouseInputs | ImGuiWindowFlags_NoNavInputs | ImGuiWindowFlags_NoNavFocus,
12221222

12231223
// [Internal]
1224+
ImGuiWindowFlags_DockNodeHost = 1<<23, // Don't use! For internal use by Begin()/NewFrame()
12241225
ImGuiWindowFlags_ChildWindow = 1<<24, // Don't use! For internal use by BeginChild()
12251226
ImGuiWindowFlags_Tooltip = 1<<25, // Don't use! For internal use by BeginTooltip()
12261227
ImGuiWindowFlags_Popup = 1<<26, // Don't use! For internal use by BeginPopup()
12271228
ImGuiWindowFlags_Modal = 1<<27, // Don't use! For internal use by BeginPopupModal()
12281229
ImGuiWindowFlags_ChildMenu = 1<<28, // Don't use! For internal use by BeginMenu()
1229-
ImGuiWindowFlags_DockNodeHost = 1<<29, // Don't use! For internal use by Begin()/NewFrame()
12301230

12311231
// Obsolete names
12321232
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
@@ -3750,7 +3750,7 @@ CIMGUI_API ImVec2 ImGuiViewport_GetWorkCenter(const ImGuiViewport* self);
37503750
struct ImGuiPlatformIO_t
37513751
{
37523752
//------------------------------------------------------------------
3753-
// Interface with OS and Platform backend (basic)
3753+
// Input - Interface with OS and Platform backend (most common stuff)
37543754
//------------------------------------------------------------------
37553755

37563756
// Optional: Access OS clipboard
@@ -3775,14 +3775,14 @@ struct ImGuiPlatformIO_t
37753775
ImWchar Platform_LocaleDecimalPoint; // '.'
37763776

37773777
//------------------------------------------------------------------
3778-
// Interface with Renderer Backend
3778+
// Input - Interface with Renderer Backend
37793779
//------------------------------------------------------------------
37803780

37813781
// Written by some backends during ImGui_ImplXXXX_RenderDrawData() call to point backend_specific ImGui_ImplXXXX_RenderState* structure.
37823782
void* Renderer_RenderState;
37833783

37843784
//------------------------------------------------------------------
3785-
// Input - Interface with OS/backends (Multi-Viewport support!)
3785+
// Input - Interface with Platform & Renderer backends for Multi-Viewport support
37863786
//------------------------------------------------------------------
37873787

37883788
// For reference, the second column shows which function are generally calling the Platform Functions:

0 commit comments

Comments
 (0)