-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding freetype capabilities to cimgui (#6)
* Some initial freetype work * Added freetype * Regenerated the bindings, added scripts to help with that, adjust output dir. * Deleted unneeded dlls * Moved where the DLLs live.
- Loading branch information
Showing
25 changed files
with
493 additions
and
878 deletions.
There are no files selected for viewing
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,11 @@ | ||
cd deps | ||
mkdir build_x64 | ||
cd build_x64 | ||
cmake -G "Visual Studio 16 2019" -Ax64 .. | ||
cmake --build . --config Release | ||
cd .. | ||
mkdir build_x86 | ||
cd build_x86 | ||
cmake -G "Visual Studio 16 2019" -AWin32 .. | ||
cmake --build . --config Release | ||
cd ../../ |
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,3 @@ | ||
rmdir /s /q deps\build | ||
|
||
BuildDependencies.bat |
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,2 @@ | ||
GenerateCImGuiBindings.bat | ||
GenerateDBindings.bat |
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,4 @@ | ||
|
||
cd ./deps/cimgui/generator | ||
luajit ./generator.lua cl "internal freetype" glfw opengl3 opengl2 sdl | ||
cd ../../../ |
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 @@ | ||
rdmd ./generator/generator.d |
Binary file not shown.
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
Submodule cimgui
updated
20 files
+22 −5 | CMakeLists.txt | |
+1 −1 | README.md | |
+1 −1 | backend_test/CMakeLists.txt | |
+3 −4 | backend_test/cimgui_extras.cpp | |
+156 −87 | cimgui.cpp | |
+1,724 −1,655 | cimgui.h | |
+6 −1 | generator/cpp2ffi.lua | |
+4 −2 | generator/generator.bat | |
+14 −33 | generator/generator.lua | |
+4 −1 | generator/output/cimgui_impl.h | |
+1,852 −1,427 | generator/output/definitions.json | |
+1,815 −1,447 | generator/output/definitions.lua | |
+89 −23 | generator/output/impl_definitions.json | |
+81 −24 | generator/output/impl_definitions.lua | |
+530 −362 | generator/output/structs_and_enums.json | |
+1,216 −1,088 | generator/output/structs_and_enums.lua | |
+6 −4 | generator/output/typedefs_dict.json | |
+6 −4 | generator/output/typedefs_dict.lua | |
+25 −0 | generator/print_defines.cpp | |
+1 −1 | imgui |
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.