diff options
-rw-r--r-- | app/source/Cplt/ImGuiBackend/Backend.hpp (renamed from app/source/Cplt/Entrypoint/Backend.hpp) | 0 | ||||
-rw-r--r-- | app/source/Cplt/ImGuiBackend/Backend_DirectX11.cpp (renamed from app/source/Cplt/Entrypoint/Backend_DirectX11.cpp) | 0 | ||||
-rw-r--r-- | app/source/Cplt/ImGuiBackend/Backend_DirectX12.cpp (renamed from app/source/Cplt/Entrypoint/Backend_DirectX12.cpp) | 0 | ||||
-rw-r--r-- | app/source/Cplt/ImGuiBackend/Backend_Metal.mm (renamed from app/source/Cplt/Entrypoint/Backend_Metal.mm) | 0 | ||||
-rw-r--r-- | app/source/Cplt/ImGuiBackend/Backend_OpenGL2.cpp (renamed from app/source/Cplt/Entrypoint/Backend_OpenGL2.cpp) | 2 | ||||
-rw-r--r-- | app/source/Cplt/ImGuiBackend/Backend_OpenGL3.cpp (renamed from app/source/Cplt/Entrypoint/Backend_OpenGL3.cpp) | 2 | ||||
-rw-r--r-- | app/source/Cplt/ImGuiBackend/Backend_Vulkan.cpp (renamed from app/source/Cplt/Entrypoint/Backend_Vulkan.cpp) | 2 | ||||
-rw-r--r-- | app/source/Cplt/main.cpp (renamed from app/source/Cplt/Entrypoint/main.cpp) | 2 |
8 files changed, 4 insertions, 4 deletions
diff --git a/app/source/Cplt/Entrypoint/Backend.hpp b/app/source/Cplt/ImGuiBackend/Backend.hpp index ca391e6..ca391e6 100644 --- a/app/source/Cplt/Entrypoint/Backend.hpp +++ b/app/source/Cplt/ImGuiBackend/Backend.hpp diff --git a/app/source/Cplt/Entrypoint/Backend_DirectX11.cpp b/app/source/Cplt/ImGuiBackend/Backend_DirectX11.cpp index 4dc33f7..4dc33f7 100644 --- a/app/source/Cplt/Entrypoint/Backend_DirectX11.cpp +++ b/app/source/Cplt/ImGuiBackend/Backend_DirectX11.cpp diff --git a/app/source/Cplt/Entrypoint/Backend_DirectX12.cpp b/app/source/Cplt/ImGuiBackend/Backend_DirectX12.cpp index fd4a531..fd4a531 100644 --- a/app/source/Cplt/Entrypoint/Backend_DirectX12.cpp +++ b/app/source/Cplt/ImGuiBackend/Backend_DirectX12.cpp diff --git a/app/source/Cplt/Entrypoint/Backend_Metal.mm b/app/source/Cplt/ImGuiBackend/Backend_Metal.mm index 276bef2..276bef2 100644 --- a/app/source/Cplt/Entrypoint/Backend_Metal.mm +++ b/app/source/Cplt/ImGuiBackend/Backend_Metal.mm diff --git a/app/source/Cplt/Entrypoint/Backend_OpenGL2.cpp b/app/source/Cplt/ImGuiBackend/Backend_OpenGL2.cpp index 0f20997..943a527 100644 --- a/app/source/Cplt/Entrypoint/Backend_OpenGL2.cpp +++ b/app/source/Cplt/ImGuiBackend/Backend_OpenGL2.cpp @@ -1,4 +1,4 @@ -#include <Cplt/Entrypoint/Backend.hpp> +#include "Backend.hpp" #if BUILD_CORE_WITH_OPENGL2_BACKEND # include <glad/glad.h> diff --git a/app/source/Cplt/Entrypoint/Backend_OpenGL3.cpp b/app/source/Cplt/ImGuiBackend/Backend_OpenGL3.cpp index 28a34ca..9a7d67f 100644 --- a/app/source/Cplt/Entrypoint/Backend_OpenGL3.cpp +++ b/app/source/Cplt/ImGuiBackend/Backend_OpenGL3.cpp @@ -1,4 +1,4 @@ -#include <Cplt/Entrypoint/Backend.hpp> +#include "Backend.hpp" #if BUILD_CORE_WITH_OPENGL3_BACKEND # include <glad/glad.h> diff --git a/app/source/Cplt/Entrypoint/Backend_Vulkan.cpp b/app/source/Cplt/ImGuiBackend/Backend_Vulkan.cpp index 280a82b..3694f05 100644 --- a/app/source/Cplt/Entrypoint/Backend_Vulkan.cpp +++ b/app/source/Cplt/ImGuiBackend/Backend_Vulkan.cpp @@ -1,4 +1,4 @@ -#include <Cplt/Entrypoint/Backend.hpp> +#include "Backend.hpp" #if BUILD_CORE_WITH_VULKAN_BACKEND # include <iostream> diff --git a/app/source/Cplt/Entrypoint/main.cpp b/app/source/Cplt/main.cpp index 8f67d32..55c1019 100644 --- a/app/source/Cplt/Entrypoint/main.cpp +++ b/app/source/Cplt/main.cpp @@ -1,4 +1,4 @@ -#include <Cplt/Entrypoint/Backend.hpp> +#include <Cplt/ImGuiBackend/Backend.hpp> #include <Cplt/Model/GlobalStates.hpp> #include <Cplt/UI/UI.hpp> #include <Cplt/Utils/I18n.hpp> |