diff options
Diffstat (limited to 'tools/gfx/vulkan/vk-module.cpp')
| -rw-r--r-- | tools/gfx/vulkan/vk-module.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tools/gfx/vulkan/vk-module.cpp b/tools/gfx/vulkan/vk-module.cpp index 0e4df8e7f..6a3d4e095 100644 --- a/tools/gfx/vulkan/vk-module.cpp +++ b/tools/gfx/vulkan/vk-module.cpp @@ -1,19 +1,20 @@ // module.cpp #include "vk-module.h" -#include <stdlib.h> -#include <stdio.h> #include <assert.h> +#include <stdio.h> +#include <stdlib.h> #if SLANG_WINDOWS_FAMILY -# include <windows.h> +#include <windows.h> #else -# include <dlfcn.h> +#include <dlfcn.h> #endif #include "../renderer-shared.h" -namespace gfx { +namespace gfx +{ using namespace Slang; // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! VulkanModule !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! @@ -81,4 +82,4 @@ void VulkanModule::destroy() m_module = nullptr; } -} // renderer_test +} // namespace gfx |
