Add ImGui

- Initial ImGui commit, add support for showing demo window in Copium
  Engine
This commit is contained in:
Thraix
2023-07-13 18:18:52 +02:00
parent 4a1a149a68
commit cb120ef731
21 changed files with 381 additions and 6 deletions
+12
View File
@@ -10,6 +10,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CopiumEngine", "CopiumEngin
{837D2EA3-3E5B-41A2-B2D2-4DC8B5425490} = {837D2EA3-3E5B-41A2-B2D2-4DC8B5425490}
{8887886E-367C-40E8-BDC2-901F4F21571E} = {8887886E-367C-40E8-BDC2-901F4F21571E}
{B1E43BD2-F22E-44C4-AEEB-3B0C0BC7947C} = {B1E43BD2-F22E-44C4-AEEB-3B0C0BC7947C}
{E9AB3B33-1F75-433A-A324-3F92017964F5} = {E9AB3B33-1F75-433A-A324-3F92017964F5}
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extensions", "Extensions", "{6076C304-B981-471F-BDA0-57A33D9D6832}"
@@ -24,6 +25,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "msdf-atlas-gen", "ext\proje
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "glfw3", "ext\projects\glfw3\glfw3.vcxproj", "{B1E43BD2-F22E-44C4-AEEB-3B0C0BC7947C}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "imgui", "ext\projects\imgui\imgui.vcxproj", "{E9AB3B33-1F75-433A-A324-3F92017964F5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
@@ -80,6 +83,14 @@ Global
{B1E43BD2-F22E-44C4-AEEB-3B0C0BC7947C}.Release|x64.Build.0 = Release|x64
{B1E43BD2-F22E-44C4-AEEB-3B0C0BC7947C}.Release|x86.ActiveCfg = Release|Win32
{B1E43BD2-F22E-44C4-AEEB-3B0C0BC7947C}.Release|x86.Build.0 = Release|Win32
{E9AB3B33-1F75-433A-A324-3F92017964F5}.Debug|x64.ActiveCfg = Debug|x64
{E9AB3B33-1F75-433A-A324-3F92017964F5}.Debug|x64.Build.0 = Debug|x64
{E9AB3B33-1F75-433A-A324-3F92017964F5}.Debug|x86.ActiveCfg = Debug|Win32
{E9AB3B33-1F75-433A-A324-3F92017964F5}.Debug|x86.Build.0 = Debug|Win32
{E9AB3B33-1F75-433A-A324-3F92017964F5}.Release|x64.ActiveCfg = Release|x64
{E9AB3B33-1F75-433A-A324-3F92017964F5}.Release|x64.Build.0 = Release|x64
{E9AB3B33-1F75-433A-A324-3F92017964F5}.Release|x86.ActiveCfg = Release|Win32
{E9AB3B33-1F75-433A-A324-3F92017964F5}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -90,6 +101,7 @@ Global
{837D2EA3-3E5B-41A2-B2D2-4DC8B5425490} = {6076C304-B981-471F-BDA0-57A33D9D6832}
{8887886E-367C-40E8-BDC2-901F4F21571E} = {6076C304-B981-471F-BDA0-57A33D9D6832}
{B1E43BD2-F22E-44C4-AEEB-3B0C0BC7947C} = {6076C304-B981-471F-BDA0-57A33D9D6832}
{E9AB3B33-1F75-433A-A324-3F92017964F5} = {6076C304-B981-471F-BDA0-57A33D9D6832}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8CA46360-3BB7-4DFC-8319-7D4372B4C851}