-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade to 1.91.6 * bump up release version
- Loading branch information
Showing
26 changed files
with
2,958 additions
and
2,405 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3,863 changes: 2,120 additions & 1,743 deletions
3,863
src/CodeGenerator/definitions/cimgui/definitions.json
Large diffs are not rendered by default.
Oops, something went wrong.
1,257 changes: 668 additions & 589 deletions
1,257
src/CodeGenerator/definitions/cimgui/structs_and_enums.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,5 +8,6 @@ public enum ImGuiButtonFlags | |
MouseButtonRight = 2, | ||
MouseButtonMiddle = 4, | ||
MouseButtonMask = 7, | ||
EnableNav = 8, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace ImGuiNET | ||
{ | ||
[System.Flags] | ||
public enum ImGuiFreeTypeBuilderFlags | ||
{ | ||
NoHinting = 1, | ||
NoAutoHint = 2, | ||
ForceAutoHint = 4, | ||
LightHinting = 8, | ||
MonoHinting = 16, | ||
Bold = 32, | ||
Oblique = 64, | ||
Monochrome = 128, | ||
LoadColor = 256, | ||
Bitmap = 512, | ||
} | ||
} |
Oops, something went wrong.