diff --git a/CMCore b/CMCore index 33f0ed32..e1a8241d 160000 --- a/CMCore +++ b/CMCore @@ -1 +1 @@ -Subproject commit 33f0ed3258ac95eae058966a2bd6b1bf05458c69 +Subproject commit e1a8241d1685950a58c0142d2393b4012618caa9 diff --git a/CMPlatform b/CMPlatform index 0948b3a6..46ae04cd 160000 --- a/CMPlatform +++ b/CMPlatform @@ -1 +1 @@ -Subproject commit 0948b3a6257fdcc1e33eeb61bf42d0e93b32d326 +Subproject commit 46ae04cd50d09dfb00d9945c5f43d29a2744bcae diff --git a/example/common/VulkanAppFramework.h b/example/common/VulkanAppFramework.h index ff0f8e59..ada23ed3 100644 --- a/example/common/VulkanAppFramework.h +++ b/example/common/VulkanAppFramework.h @@ -461,7 +461,7 @@ public: void Update() { - cur_time=GetDoubleTime(); + cur_time=GetPreciseTime(); } }; diff --git a/inc/hgl/component/Component.h b/inc/hgl/component/Component.h index 4afc201a..0aceac83 100644 --- a/inc/hgl/component/Component.h +++ b/inc/hgl/component/Component.h @@ -2,7 +2,7 @@ #include #include -#include +#include /** * Component/Data/Manager 体系设计简要说明 diff --git a/inc/hgl/db/FieldType.h b/inc/hgl/db/FieldType.h index a3bb3a31..dd01eab5 100644 --- a/inc/hgl/db/FieldType.h +++ b/inc/hgl/db/FieldType.h @@ -1,7 +1,7 @@ #ifndef HGL_DB_FIELD_TYPE_INCLUDE #define HGL_DB_FIELD_TYPE_INCLUDE -#include +#include #include namespace hgl { diff --git a/inc/hgl/graph/VK.h b/inc/hgl/graph/VK.h index d17a56f7..e5baa0b7 100644 --- a/inc/hgl/graph/VK.h +++ b/inc/hgl/graph/VK.h @@ -1,6 +1,6 @@ #pragma once -#include +#include #include #include #include diff --git a/inc/hgl/graph/VKDevice.h b/inc/hgl/graph/VKDevice.h index e1a7e67f..4dd6730e 100644 --- a/inc/hgl/graph/VKDevice.h +++ b/inc/hgl/graph/VKDevice.h @@ -1,7 +1,7 @@ #ifndef HGL_GRAPH_VULKAN_DEVICE_INCLUDE #define HGL_GRAPH_VULKAN_DEVICE_INCLUDE -#include +#include #include #include #include diff --git a/inc/hgl/graph/mtl/ShaderVariableType.h b/inc/hgl/graph/mtl/ShaderVariableType.h index eaecbb98..0afe6ad9 100644 --- a/inc/hgl/graph/mtl/ShaderVariableType.h +++ b/inc/hgl/graph/mtl/ShaderVariableType.h @@ -1,7 +1,7 @@ #pragma once #include -#include +#include #include #include #include diff --git a/src/SceneGraph/Vulkan/DebugOutProperties.h b/src/SceneGraph/Vulkan/DebugOutProperties.h index 5b4e7dfa..507c17de 100644 --- a/src/SceneGraph/Vulkan/DebugOutProperties.h +++ b/src/SceneGraph/Vulkan/DebugOutProperties.h @@ -1,4 +1,4 @@ -#include +#include #include #include diff --git a/src/Work/WorkManager.cpp b/src/Work/WorkManager.cpp index 38a8d530..6773b8f9 100644 --- a/src/Work/WorkManager.cpp +++ b/src/Work/WorkManager.cpp @@ -70,7 +70,7 @@ namespace hgl while(!cur_work_object->IsDestroy()) { - cur_time=GetDoubleTime(); + cur_time=GetPreciseTime(); if(cur_work_object->IsTickable()) Tick(cur_work_object);