diff options
author | crupest <crupest@outlook.com> | 2022-05-15 13:56:40 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-05-15 13:56:40 +0800 |
commit | 9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752 (patch) | |
tree | 7342f6991771fa31b16fd6a5ed892ff6025f3d05 /src/platform/bootstrap/Bootstrap.cpp | |
parent | 41de54bad2c0f857821fcc83f41af3334d068b6d (diff) | |
download | cru-9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752.tar.gz cru-9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752.tar.bz2 cru-9e0c9d3499bc50c3534b4dc500d8b5d0b5f22752.zip |
...
Diffstat (limited to 'src/platform/bootstrap/Bootstrap.cpp')
-rw-r--r-- | src/platform/bootstrap/Bootstrap.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/platform/bootstrap/Bootstrap.cpp b/src/platform/bootstrap/Bootstrap.cpp index a32cbb65..5dcd0c77 100644 --- a/src/platform/bootstrap/Bootstrap.cpp +++ b/src/platform/bootstrap/Bootstrap.cpp @@ -1,8 +1,8 @@ #include "cru/platform/bootstrap/Bootstrap.h" #ifdef CRU_PLATFORM_WINDOWS -#include "cru/win/graphics/direct/Factory.h" -#include "cru/win/gui/UiApplication.h" +#include "cru/platform/graphics/direct2d/Factory.h" +#include "cru/platform/gui/win/UiApplication.h" #else #include "cru/osx/graphics/quartz/Factory.h" #include "cru/osx/gui/UiApplication.h" @@ -22,7 +22,7 @@ cru::platform::gui::IUiApplication* CreateUiApplication() { CRU_PLATFORM_BOOTSTRAP_API cru::platform::graphics::IGraphicsFactory* CreateGraphicsFactory() { #ifdef CRU_PLATFORM_WINDOWS - return new cru::platform::graphics::win::direct::DirectGraphicsFactory(); + return new cru::platform::graphics::direct2d::DirectGraphicsFactory(); #elif CRU_PLATFORM_OSX return new cru::platform::graphics::osx::quartz::QuartzGraphicsFactory(); #else |