mirror of
				https://github.com/ocornut/imgui.git
				synced 2025-11-04 01:34:32 +00:00 
			
		
		
		
	Version 1.87 WIP + Backends: OpenGL3: Fixed a buffer overflow in imgui_impl_opengl3_loader.h init, added in 1.86 (#4468, #4830)
This commit is contained in:
		@@ -437,7 +437,7 @@ GL3W_API GL3WglProc imgl3wGetProcAddress(const char *proc);
 | 
			
		||||
 | 
			
		||||
/* gl3w internal state */
 | 
			
		||||
union GL3WProcs {
 | 
			
		||||
    GL3WglProc ptr[53];
 | 
			
		||||
    GL3WglProc ptr[54];
 | 
			
		||||
    struct {
 | 
			
		||||
        PFNGLACTIVETEXTUREPROC           ActiveTexture;
 | 
			
		||||
        PFNGLATTACHSHADERPROC            AttachShader;
 | 
			
		||||
 
 | 
			
		||||
@@ -30,6 +30,15 @@ HOW TO UPDATE?
 | 
			
		||||
  and API updates have been a little more frequent lately. They are documented below and in imgui.cpp and should not affect all users.
 | 
			
		||||
- Please report any issue!
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-----------------------------------------------------------------------
 | 
			
		||||
 VERSION 1.87 WIP (In Progress)
 | 
			
		||||
-----------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
- Backends: OpenGL3: Fixed a buffer overflow in imgui_impl_opengl3_loader.h init, added in 1.86 (#4468, #4830) [@dymk]
 | 
			
		||||
  It would generally not have noticeable side-effect at runtime but would be detected by runtime checkers.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
-----------------------------------------------------------------------
 | 
			
		||||
 VERSION 1.86 (Released 2021-12-22)
 | 
			
		||||
-----------------------------------------------------------------------
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
// dear imgui, v1.86
 | 
			
		||||
// dear imgui, v1.87 WIP
 | 
			
		||||
// (main code and documentation)
 | 
			
		||||
 | 
			
		||||
// Help:
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										6
									
								
								imgui.h
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								imgui.h
									
									
									
									
									
								
							@@ -1,4 +1,4 @@
 | 
			
		||||
// dear imgui, v1.86
 | 
			
		||||
// dear imgui, v1.87 WIP
 | 
			
		||||
// (headers)
 | 
			
		||||
 | 
			
		||||
// Help:
 | 
			
		||||
@@ -63,8 +63,8 @@ Index of this file:
 | 
			
		||||
 | 
			
		||||
// Version
 | 
			
		||||
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals. Work in progress versions typically starts at XYY99 then bounce up to XYY00, XYY01 etc. when release tagging happens)
 | 
			
		||||
#define IMGUI_VERSION               "1.86"
 | 
			
		||||
#define IMGUI_VERSION_NUM           18601
 | 
			
		||||
#define IMGUI_VERSION               "1.87 WIP"
 | 
			
		||||
#define IMGUI_VERSION_NUM           18602
 | 
			
		||||
#define IMGUI_CHECKVERSION()        ImGui::DebugCheckVersionAndDataLayout(IMGUI_VERSION, sizeof(ImGuiIO), sizeof(ImGuiStyle), sizeof(ImVec2), sizeof(ImVec4), sizeof(ImDrawVert), sizeof(ImDrawIdx))
 | 
			
		||||
#define IMGUI_HAS_TABLE
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
// dear imgui, v1.86
 | 
			
		||||
// dear imgui, v1.87 WIP
 | 
			
		||||
// (demo code)
 | 
			
		||||
 | 
			
		||||
// Help:
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
// dear imgui, v1.86
 | 
			
		||||
// dear imgui, v1.87 WIP
 | 
			
		||||
// (drawing and font code)
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
// dear imgui, v1.86
 | 
			
		||||
// dear imgui, v1.87 WIP
 | 
			
		||||
// (internal structures/api)
 | 
			
		||||
 | 
			
		||||
// You may use this file to debug, understand or extend ImGui features but we don't provide any guarantee of forward compatibility!
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
// dear imgui, v1.86
 | 
			
		||||
// dear imgui, v1.87 WIP
 | 
			
		||||
// (tables and columns code)
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
// dear imgui, v1.86
 | 
			
		||||
// dear imgui, v1.87 WIP
 | 
			
		||||
// (widgets code)
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user