diff --git a/.gitignore b/.gitignore index be5a18cd..75c8ec88 100644 --- a/.gitignore +++ b/.gitignore @@ -217,4 +217,10 @@ data/readme.txt data/models/cerberus/*.* !data/textures/hdr/README.md -*.args.json \ No newline at end of file +*.args.json + +# Ignore VS project files +*.sln +*.vcxproj +*.vcxproj.filters +*.vcxproj.user \ No newline at end of file diff --git a/README.md b/README.md index a7a2e562..77b02cd4 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,10 @@ The repository contains everything required to compile and build the examples on [![Build status](https://ci.appveyor.com/api/projects/status/abylymfyil0mhpx8?svg=true)](https://ci.appveyor.com/project/SaschaWillems/vulkan) -A Visual Studio solution file for compiling all examples is included with the repository, examples will compile with VS2015 out of the box. - -If you're using a different IDE or compiler you can use the provided CMakeLists.txt for use with [CMake](https://cmake.org) to generate a build configuration for your toolchain. +Use the provided CMakeLists.txt with [CMake](https://cmake.org) to generate a build configuration for your favorite IDE or compiler, e.g.: +``` +cmake -G "Visual Studio 14 2015 Win64" +``` ## Linux diff --git a/bloom/bloom.vcxproj b/bloom/bloom.vcxproj deleted file mode 100644 index 069456a8..00000000 --- a/bloom/bloom.vcxproj +++ /dev/null @@ -1,105 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {DF2888BD-8794-4074-8E9C-1E70443CE45E} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/bloom/bloom.vcxproj.filters b/bloom/bloom.vcxproj.filters deleted file mode 100644 index 00ad5200..00000000 --- a/bloom/bloom.vcxproj.filters +++ /dev/null @@ -1,71 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {9db52377-7306-4ab6-9a34-f1eed864f8c6} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/computecloth/computecloth.vcxproj b/computecloth/computecloth.vcxproj deleted file mode 100644 index 26e510f8..00000000 --- a/computecloth/computecloth.vcxproj +++ /dev/null @@ -1,102 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {12ACF921-90B1-44D9-AF06-B5C0F0B8191A} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/computecloth/computecloth.vcxproj.filters b/computecloth/computecloth.vcxproj.filters deleted file mode 100644 index 68a12b56..00000000 --- a/computecloth/computecloth.vcxproj.filters +++ /dev/null @@ -1,62 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {e28680da-cc95-413d-b6f0-0e1f9967ee88} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/computecullandlod/computecullandlod.vcxproj b/computecullandlod/computecullandlod.vcxproj deleted file mode 100644 index 869b9843..00000000 --- a/computecullandlod/computecullandlod.vcxproj +++ /dev/null @@ -1,83 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - - - - - - {8418A364-3D1C-4938-A2CC-C1D1433039F2} - computecullandlod - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - Level3 - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/computecullandlod/computecullandlod.vcxproj.filters b/computecullandlod/computecullandlod.vcxproj.filters deleted file mode 100644 index 7d290abe..00000000 --- a/computecullandlod/computecullandlod.vcxproj.filters +++ /dev/null @@ -1,56 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {37cda328-a1ea-4618-9651-ebcfb9f84293} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/computeheadless/computeheadless.vcxproj b/computeheadless/computeheadless.vcxproj deleted file mode 100644 index b1db9e87..00000000 --- a/computeheadless/computeheadless.vcxproj +++ /dev/null @@ -1,94 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {13862534-67C8-46B7-9574-531E987D8F37} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/computeheadless/computeheadless.vcxproj.filters b/computeheadless/computeheadless.vcxproj.filters deleted file mode 100644 index ffce37df..00000000 --- a/computeheadless/computeheadless.vcxproj.filters +++ /dev/null @@ -1,38 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {b92c560f-2fe8-4d06-a2c8-deede9ebe4e6} - - - - - Source Files - - - Source Files - - - - - Header Files - - - - - Shaders - - - \ No newline at end of file diff --git a/computenbody/computenbody.vcxproj b/computenbody/computenbody.vcxproj deleted file mode 100644 index 8d9dd6a8..00000000 --- a/computenbody/computenbody.vcxproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {6B4BC372-5897-40FB-91D4-421C2817F656} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/computenbody/computenbody.vcxproj.filters b/computenbody/computenbody.vcxproj.filters deleted file mode 100644 index b8cdbc23..00000000 --- a/computenbody/computenbody.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {e28680da-cc95-413d-b6f0-0e1f9967ee88} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/computeparticles/computeparticles.vcxproj b/computeparticles/computeparticles.vcxproj deleted file mode 100644 index 9d4b51d3..00000000 --- a/computeparticles/computeparticles.vcxproj +++ /dev/null @@ -1,100 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {5A049556-EA1E-4985-8D0B-3748E5D56F68} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/computeparticles/computeparticles.vcxproj.filters b/computeparticles/computeparticles.vcxproj.filters deleted file mode 100644 index 80246e85..00000000 --- a/computeparticles/computeparticles.vcxproj.filters +++ /dev/null @@ -1,56 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {e28680da-cc95-413d-b6f0-0e1f9967ee88} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/computeshader/computeshader.vcxproj b/computeshader/computeshader.vcxproj deleted file mode 100644 index d403519d..00000000 --- a/computeshader/computeshader.vcxproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {553C9532-8989-4851-9D59-557C64FF62BE} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - MaxSpeed - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/computeshader/computeshader.vcxproj.filters b/computeshader/computeshader.vcxproj.filters deleted file mode 100644 index 74d2aade..00000000 --- a/computeshader/computeshader.vcxproj.filters +++ /dev/null @@ -1,62 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {232f5393-2624-4cd4-84ed-9fdda34ff64c} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/debugmarker/debugmarker.vcxproj b/debugmarker/debugmarker.vcxproj deleted file mode 100644 index a8abf6d6..00000000 --- a/debugmarker/debugmarker.vcxproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {146FD6F8-5CB4-478E-A823-7350A0ACCF1D} - debugmarker - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/debugmarker/debugmarker.vcxproj.filters b/debugmarker/debugmarker.vcxproj.filters deleted file mode 100644 index edeea650..00000000 --- a/debugmarker/debugmarker.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/deferred/deferred.vcxproj b/deferred/deferred.vcxproj deleted file mode 100644 index e53071cf..00000000 --- a/deferred/deferred.vcxproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {AF2911F4-33BF-465E-9298-E46D58B929EF} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/deferred/deferred.vcxproj.filters b/deferred/deferred.vcxproj.filters deleted file mode 100644 index 635a4ec5..00000000 --- a/deferred/deferred.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {ebe308dc-b904-4532-ac58-da84d73e2cd7} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/deferredmultisampling/deferredmultisampling.vcxproj b/deferredmultisampling/deferredmultisampling.vcxproj deleted file mode 100644 index 936a9e8d..00000000 --- a/deferredmultisampling/deferredmultisampling.vcxproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {0CB44B34-A81F-4002-9AC7-E0EEA55D8A60} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/deferredmultisampling/deferredmultisampling.vcxproj.filters b/deferredmultisampling/deferredmultisampling.vcxproj.filters deleted file mode 100644 index 13af3e24..00000000 --- a/deferredmultisampling/deferredmultisampling.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {210c4466-75e2-4230-9332-1ac69de9dcec} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/deferredshadows/deferredshadows.vcxproj b/deferredshadows/deferredshadows.vcxproj deleted file mode 100644 index b707a715..00000000 --- a/deferredshadows/deferredshadows.vcxproj +++ /dev/null @@ -1,107 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {BFEB15A3-D252-4AF7-8CA8-B9396F374DDB} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/deferredshadows/deferredshadows.vcxproj.filters b/deferredshadows/deferredshadows.vcxproj.filters deleted file mode 100644 index 5bacf9a0..00000000 --- a/deferredshadows/deferredshadows.vcxproj.filters +++ /dev/null @@ -1,77 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {9e89ec36-20e5-4fab-8bb2-2db119827e59} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/displacement/displacement.vcxproj b/displacement/displacement.vcxproj deleted file mode 100644 index c783f93f..00000000 --- a/displacement/displacement.vcxproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {44B86F78-3931-4198-B189-6DF4B32FA8AE} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - - - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/displacement/displacement.vcxproj.filters b/displacement/displacement.vcxproj.filters deleted file mode 100644 index 4695c32c..00000000 --- a/displacement/displacement.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/distancefieldfonts/distancefieldfonts.vcxproj b/distancefieldfonts/distancefieldfonts.vcxproj deleted file mode 100644 index 0026c725..00000000 --- a/distancefieldfonts/distancefieldfonts.vcxproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {ABBB2F3B-C176-4006-853F-FC695AEF5DA0} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/distancefieldfonts/distancefieldfonts.vcxproj.filters b/distancefieldfonts/distancefieldfonts.vcxproj.filters deleted file mode 100644 index 146160b2..00000000 --- a/distancefieldfonts/distancefieldfonts.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/dynamicuniformbuffer/dynamicuniformbuffer.vcxproj b/dynamicuniformbuffer/dynamicuniformbuffer.vcxproj deleted file mode 100644 index fd1a46b6..00000000 --- a/dynamicuniformbuffer/dynamicuniformbuffer.vcxproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {3DB2A9C4-50BC-4390-A94F-F7F724238101} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/dynamicuniformbuffer/dynamicuniformbuffer.vcxproj.filters b/dynamicuniformbuffer/dynamicuniformbuffer.vcxproj.filters deleted file mode 100644 index 1fb03458..00000000 --- a/dynamicuniformbuffer/dynamicuniformbuffer.vcxproj.filters +++ /dev/null @@ -1,53 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {63dc9158-9a3b-41c0-9e79-70fa1772be4c} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/gears/gears.vcxproj b/gears/gears.vcxproj deleted file mode 100644 index 5ca24469..00000000 --- a/gears/gears.vcxproj +++ /dev/null @@ -1,97 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {308FA88E-E958-4F2E-B571-21EBC19E06C6} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/gears/gears.vcxproj.filters b/gears/gears.vcxproj.filters deleted file mode 100644 index 6fdcb8a1..00000000 --- a/gears/gears.vcxproj.filters +++ /dev/null @@ -1,48 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/geometryshader/geometryshader.vcxproj b/geometryshader/geometryshader.vcxproj deleted file mode 100644 index a84e4036..00000000 --- a/geometryshader/geometryshader.vcxproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {EA0130EC-A407-4F1F-97F4-7D0FB731475E} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/geometryshader/geometryshader.vcxproj.filters b/geometryshader/geometryshader.vcxproj.filters deleted file mode 100644 index 73f52291..00000000 --- a/geometryshader/geometryshader.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/hdr/hdr.vcxproj b/hdr/hdr.vcxproj deleted file mode 100644 index 064f960d..00000000 --- a/hdr/hdr.vcxproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {582913B3-9B37-48CA-AEBD-69023DA9F7C8} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/hdr/hdr.vcxproj.filters b/hdr/hdr.vcxproj.filters deleted file mode 100644 index 2c8eacce..00000000 --- a/hdr/hdr.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {3adf072b-32a9-412a-8eb5-5329a601df1a} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/imgui/imgui.vcxproj b/imgui/imgui.vcxproj deleted file mode 100644 index 239781e2..00000000 --- a/imgui/imgui.vcxproj +++ /dev/null @@ -1,104 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {3BC2A597-A8BD-41AE-816B-2C242579D64E} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;..\external\imgui;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;..\external\imgui;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/imgui/imgui.vcxproj.filters b/imgui/imgui.vcxproj.filters deleted file mode 100644 index 7fcbb0dc..00000000 --- a/imgui/imgui.vcxproj.filters +++ /dev/null @@ -1,71 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {0cdfbaee-3d49-4b65-b7c3-a1dc2d1075b6} - - - {0d3e198a-9d44-41ec-8cd9-06eb27605ce0} - - - - - Source Files - - - Source Files - - - Source Files - - - imgui - - - imgui - - - imgui - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/indirectdraw/indirectdraw.vcxproj b/indirectdraw/indirectdraw.vcxproj deleted file mode 100644 index 67dfe96e..00000000 --- a/indirectdraw/indirectdraw.vcxproj +++ /dev/null @@ -1,86 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - - - - - - - - - {2BBDD10F-2C9D-4BEA-8C7B-1C510A2CE08B} - indirectdraw - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - Level3 - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/indirectdraw/indirectdraw.vcxproj.filters b/indirectdraw/indirectdraw.vcxproj.filters deleted file mode 100644 index 94e71302..00000000 --- a/indirectdraw/indirectdraw.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {37cda328-a1ea-4618-9651-ebcfb9f84293} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/instancing/instancing.vcxproj b/instancing/instancing.vcxproj deleted file mode 100644 index 88280ede..00000000 --- a/instancing/instancing.vcxproj +++ /dev/null @@ -1,85 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - - - - - - - - - {CF2E27EC-5A81-412A-A3E2-E6EB5C8B66E3} - instancing - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/instancing/instancing.vcxproj.filters b/instancing/instancing.vcxproj.filters deleted file mode 100644 index 10b94c3a..00000000 --- a/instancing/instancing.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {f3943aa8-abcf-4afa-b9d0-51c790106e29} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/mesh/mesh.vcxproj b/mesh/mesh.vcxproj deleted file mode 100644 index 63500ef7..00000000 --- a/mesh/mesh.vcxproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {5705CA9F-95A0-477C-9169-4CBB0484A44A} - mesh - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/mesh/mesh.vcxproj.filters b/mesh/mesh.vcxproj.filters deleted file mode 100644 index dfffa6cf..00000000 --- a/mesh/mesh.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/multisampling/multisampling.vcxproj b/multisampling/multisampling.vcxproj deleted file mode 100644 index d72666ed..00000000 --- a/multisampling/multisampling.vcxproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {34265930-5C09-447C-9C21-45FD933902FC} - multisampling - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/multisampling/multisampling.vcxproj.filters b/multisampling/multisampling.vcxproj.filters deleted file mode 100644 index c159ec3c..00000000 --- a/multisampling/multisampling.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/multithreading/multithreading.vcxproj b/multithreading/multithreading.vcxproj deleted file mode 100644 index 7003ae35..00000000 --- a/multithreading/multithreading.vcxproj +++ /dev/null @@ -1,85 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - - - - - - - - - {F5703C3C-F495-4D5C-BAA5-A90C4E20C7B7} - mesh - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/multithreading/multithreading.vcxproj.filters b/multithreading/multithreading.vcxproj.filters deleted file mode 100644 index 1311ea18..00000000 --- a/multithreading/multithreading.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {1a2e15c8-5d53-4bb1-bfe2-a3085baadc4f} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/occlusionquery/occlusionquery.vcxproj b/occlusionquery/occlusionquery.vcxproj deleted file mode 100644 index 2c29f5b6..00000000 --- a/occlusionquery/occlusionquery.vcxproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {506027E4-0A45-4141-95C9-9B0103809922} - mesh - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/occlusionquery/occlusionquery.vcxproj.filters b/occlusionquery/occlusionquery.vcxproj.filters deleted file mode 100644 index 235bf09b..00000000 --- a/occlusionquery/occlusionquery.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/offscreen/offscreen.vcxproj b/offscreen/offscreen.vcxproj deleted file mode 100644 index a439a836..00000000 --- a/offscreen/offscreen.vcxproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {97413B4D-F770-49A1-ABF6-BEFB2B1C509C} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/offscreen/offscreen.vcxproj.filters b/offscreen/offscreen.vcxproj.filters deleted file mode 100644 index 01031578..00000000 --- a/offscreen/offscreen.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/parallaxmapping/parallaxmapping.vcxproj b/parallaxmapping/parallaxmapping.vcxproj deleted file mode 100644 index 8fc77887..00000000 --- a/parallaxmapping/parallaxmapping.vcxproj +++ /dev/null @@ -1,82 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - - - - - {3DB08441-72C9-4172-8BA9-ECEE032387BA} - parallaxmapping - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - Level3 - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/parallaxmapping/parallaxmapping.vcxproj.filters b/parallaxmapping/parallaxmapping.vcxproj.filters deleted file mode 100644 index 730b9045..00000000 --- a/parallaxmapping/parallaxmapping.vcxproj.filters +++ /dev/null @@ -1,53 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {d4e5cf47-9778-4a8e-8ef1-632080b554d6} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/particlefire/particlefire.vcxproj b/particlefire/particlefire.vcxproj deleted file mode 100644 index c7034a11..00000000 --- a/particlefire/particlefire.vcxproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {A8DDE46D-0C36-49E5-83CB-19FF69493FA0} - particlefire - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/particlefire/particlefire.vcxproj.filters b/particlefire/particlefire.vcxproj.filters deleted file mode 100644 index b6ab74dc..00000000 --- a/particlefire/particlefire.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/pbrbasic/pbrbasic.vcxproj b/pbrbasic/pbrbasic.vcxproj deleted file mode 100644 index 36242c68..00000000 --- a/pbrbasic/pbrbasic.vcxproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {92B2640A-0CC5-48EA-B34C-520BA13938D1} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/pbrbasic/pbrbasic.vcxproj.filters b/pbrbasic/pbrbasic.vcxproj.filters deleted file mode 100644 index 631e8b34..00000000 --- a/pbrbasic/pbrbasic.vcxproj.filters +++ /dev/null @@ -1,53 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {3adf072b-32a9-412a-8eb5-5329a601df1a} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/pbribl/pbribl.vcxproj b/pbribl/pbribl.vcxproj deleted file mode 100644 index 8c60eccf..00000000 --- a/pbribl/pbribl.vcxproj +++ /dev/null @@ -1,106 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {659987E9-863C-4B9B-A3D4-CBA7D67A9516} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/pbribl/pbribl.vcxproj.filters b/pbribl/pbribl.vcxproj.filters deleted file mode 100644 index 63424337..00000000 --- a/pbribl/pbribl.vcxproj.filters +++ /dev/null @@ -1,74 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {3adf072b-32a9-412a-8eb5-5329a601df1a} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/pbrtexture/pbrtexture.vcxproj b/pbrtexture/pbrtexture.vcxproj deleted file mode 100644 index 424f1c7d..00000000 --- a/pbrtexture/pbrtexture.vcxproj +++ /dev/null @@ -1,106 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {60316D67-E879-4671-B9BA-ED6B26F13AC7} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/pbrtexture/pbrtexture.vcxproj.filters b/pbrtexture/pbrtexture.vcxproj.filters deleted file mode 100644 index 552e7658..00000000 --- a/pbrtexture/pbrtexture.vcxproj.filters +++ /dev/null @@ -1,74 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {3adf072b-32a9-412a-8eb5-5329a601df1a} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/pipelines/pipelines.vcxproj b/pipelines/pipelines.vcxproj deleted file mode 100644 index f1711833..00000000 --- a/pipelines/pipelines.vcxproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {B7839B09-4D40-4E88-95D7-00CFE120ADCC} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/pipelines/pipelines.vcxproj.filters b/pipelines/pipelines.vcxproj.filters deleted file mode 100644 index 6e057e20..00000000 --- a/pipelines/pipelines.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/pushconstants/pushconstants.vcxproj b/pushconstants/pushconstants.vcxproj deleted file mode 100644 index 6d16f2da..00000000 --- a/pushconstants/pushconstants.vcxproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {6638BBE9-E47E-4A57-95A4-09474C37D023} - pushconstants - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/pushconstants/pushconstants.vcxproj.filters b/pushconstants/pushconstants.vcxproj.filters deleted file mode 100644 index 80d480ad..00000000 --- a/pushconstants/pushconstants.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/radialblur/radialblur.vcxproj b/radialblur/radialblur.vcxproj deleted file mode 100644 index cc3ed9c4..00000000 --- a/radialblur/radialblur.vcxproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {3D85DD50-05FD-4177-944F-F93D180A0055} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/radialblur/radialblur.vcxproj.filters b/radialblur/radialblur.vcxproj.filters deleted file mode 100644 index 405c8160..00000000 --- a/radialblur/radialblur.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {4d39e796-e053-4669-91df-415cc5484df6} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - shaders - - - shaders - - - shaders - - - shaders - - - shaders - - - shaders - - - \ No newline at end of file diff --git a/raytracing/raytracing.vcxproj b/raytracing/raytracing.vcxproj deleted file mode 100644 index ab0914cb..00000000 --- a/raytracing/raytracing.vcxproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {8B1C24E5-CC00-484C-9F6F-8FFCBDA3AA30} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - MaxSpeed - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/raytracing/raytracing.vcxproj.filters b/raytracing/raytracing.vcxproj.filters deleted file mode 100644 index 9e822741..00000000 --- a/raytracing/raytracing.vcxproj.filters +++ /dev/null @@ -1,56 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {a50f0cd4-8bf4-41c9-adaa-ac4dc27aaea3} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/renderheadless/renderheadless.vcxproj b/renderheadless/renderheadless.vcxproj deleted file mode 100644 index e826a292..00000000 --- a/renderheadless/renderheadless.vcxproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {8CBD2720-82A5-480A-BB8C-3A77948AEF67} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/renderheadless/renderheadless.vcxproj.filters b/renderheadless/renderheadless.vcxproj.filters deleted file mode 100644 index 95a58be6..00000000 --- a/renderheadless/renderheadless.vcxproj.filters +++ /dev/null @@ -1,41 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {b92c560f-2fe8-4d06-a2c8-deede9ebe4e6} - - - - - Source Files - - - Source Files - - - - - Header Files - - - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/scenerendering/scenerendering.vcxproj b/scenerendering/scenerendering.vcxproj deleted file mode 100644 index f8ec51a8..00000000 --- a/scenerendering/scenerendering.vcxproj +++ /dev/null @@ -1,81 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {D928DFBB-DB07-411E-A650-6D3CE697D7D0} - scenerendering - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - NativeMinimumRules.ruleset - false - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - false - Level3 - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/scenerendering/scenerendering.vcxproj.filters b/scenerendering/scenerendering.vcxproj.filters deleted file mode 100644 index 4418fdd0..00000000 --- a/scenerendering/scenerendering.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/screenshot/screenshot.vcxproj b/screenshot/screenshot.vcxproj deleted file mode 100644 index cafadc36..00000000 --- a/screenshot/screenshot.vcxproj +++ /dev/null @@ -1,81 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - - - - - {AD1DAD4D-A753-4A78-88E2-B4DCE15D482F} - screenshot - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/screenshot/screenshot.vcxproj.filters b/screenshot/screenshot.vcxproj.filters deleted file mode 100644 index 03d127fd..00000000 --- a/screenshot/screenshot.vcxproj.filters +++ /dev/null @@ -1,53 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {ea2b3ea0-f498-4b9a-a493-df913acc5e32} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/shadowmapping/shadowmapping.vcxproj b/shadowmapping/shadowmapping.vcxproj deleted file mode 100644 index 32c0a780..00000000 --- a/shadowmapping/shadowmapping.vcxproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {BF22CE41-AA83-45FE-813A-451E2EDF58D9} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/shadowmapping/shadowmapping.vcxproj.filters b/shadowmapping/shadowmapping.vcxproj.filters deleted file mode 100644 index c043b90c..00000000 --- a/shadowmapping/shadowmapping.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {e5ea34e5-d8c9-496c-a922-cc90b6777601} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/shadowmappingomni/shadowmappingomni.vcxproj b/shadowmappingomni/shadowmappingomni.vcxproj deleted file mode 100644 index a85371b0..00000000 --- a/shadowmappingomni/shadowmappingomni.vcxproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {7B36E42B-5A35-429D-BCD6-C762BD43B2F5} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/shadowmappingomni/shadowmappingomni.vcxproj.filters b/shadowmappingomni/shadowmappingomni.vcxproj.filters deleted file mode 100644 index 8941af26..00000000 --- a/shadowmappingomni/shadowmappingomni.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/skeletalanimation/skeletalanimation.vcxproj b/skeletalanimation/skeletalanimation.vcxproj deleted file mode 100644 index 34a5e5a9..00000000 --- a/skeletalanimation/skeletalanimation.vcxproj +++ /dev/null @@ -1,84 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - - - - - - - {469A1996-9BC5-4003-9564-C3816E3822E0} - skelatalanimation - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - Level3 - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/skeletalanimation/skeletalanimation.vcxproj.filters b/skeletalanimation/skeletalanimation.vcxproj.filters deleted file mode 100644 index 3dbcb78f..00000000 --- a/skeletalanimation/skeletalanimation.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {a7e2f71f-eff6-4f0b-9c6f-60b729319523} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/specializationconstants/specializationconstants.vcxproj b/specializationconstants/specializationconstants.vcxproj deleted file mode 100644 index 684dcf68..00000000 --- a/specializationconstants/specializationconstants.vcxproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {00F600D2-DF0E-4F07-B722-633F7C4B2F65} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/specializationconstants/specializationconstants.vcxproj.filters b/specializationconstants/specializationconstants.vcxproj.filters deleted file mode 100644 index 1f725253..00000000 --- a/specializationconstants/specializationconstants.vcxproj.filters +++ /dev/null @@ -1,53 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {b5352d42-8278-45c5-979c-2aa01853e035} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/sphericalenvmapping/sphericalenvmapping.vcxproj b/sphericalenvmapping/sphericalenvmapping.vcxproj deleted file mode 100644 index 6bc7ce47..00000000 --- a/sphericalenvmapping/sphericalenvmapping.vcxproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {BF2419E5-AF01-46F8-8408-6346FC204818} - sphericalenvmapping - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/sphericalenvmapping/sphericalenvmapping.vcxproj.filters b/sphericalenvmapping/sphericalenvmapping.vcxproj.filters deleted file mode 100644 index b332a2ff..00000000 --- a/sphericalenvmapping/sphericalenvmapping.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/ssao/ssao.vcxproj b/ssao/ssao.vcxproj deleted file mode 100644 index 3452d2ee..00000000 --- a/ssao/ssao.vcxproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {43FCECF5-F5E1-45DB-972A-73942D459C0A} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/ssao/ssao.vcxproj.filters b/ssao/ssao.vcxproj.filters deleted file mode 100644 index 74038014..00000000 --- a/ssao/ssao.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {08257928-84ac-4091-98b2-2187fb618654} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/stencilbuffer/stencilbuffer.vcxproj b/stencilbuffer/stencilbuffer.vcxproj deleted file mode 100644 index d34ccc13..00000000 --- a/stencilbuffer/stencilbuffer.vcxproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {B154F271-9F07-4788-B563-E36DA74ED6F5} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/stencilbuffer/stencilbuffer.vcxproj.filters b/stencilbuffer/stencilbuffer.vcxproj.filters deleted file mode 100644 index bd059c00..00000000 --- a/stencilbuffer/stencilbuffer.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {48c6f71e-9013-4586-8584-1d35c10fc728} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - shaders - - - shaders - - - shaders - - - shaders - - - \ No newline at end of file diff --git a/subpasses/subpasses.vcxproj b/subpasses/subpasses.vcxproj deleted file mode 100644 index 5371af97..00000000 --- a/subpasses/subpasses.vcxproj +++ /dev/null @@ -1,103 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {DE1DEF4B-307E-45C2-90CC-8023327294E2} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/subpasses/subpasses.vcxproj.filters b/subpasses/subpasses.vcxproj.filters deleted file mode 100644 index 92710c3f..00000000 --- a/subpasses/subpasses.vcxproj.filters +++ /dev/null @@ -1,65 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - {12c674f2-7199-4bf4-b710-4535b9f6d3f8} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/terraintessellation/terraintessellation.vcxproj b/terraintessellation/terraintessellation.vcxproj deleted file mode 100644 index 3282366b..00000000 --- a/terraintessellation/terraintessellation.vcxproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {6C6E48B1-5946-4754-9E31-E1C989EC25FE} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - - - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/terraintessellation/terraintessellation.vcxproj.filters b/terraintessellation/terraintessellation.vcxproj.filters deleted file mode 100644 index 94d6a250..00000000 --- a/terraintessellation/terraintessellation.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/tessellation/tessellation.vcxproj b/tessellation/tessellation.vcxproj deleted file mode 100644 index c27c6c80..00000000 --- a/tessellation/tessellation.vcxproj +++ /dev/null @@ -1,100 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {015C3F70-FFCE-45DA-80E0-5DED015868D7} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - - - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tessellation/tessellation.vcxproj.filters b/tessellation/tessellation.vcxproj.filters deleted file mode 100644 index 7a342be1..00000000 --- a/tessellation/tessellation.vcxproj.filters +++ /dev/null @@ -1,45 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/textoverlay/textoverlay.vcxproj b/textoverlay/textoverlay.vcxproj deleted file mode 100644 index 86615983..00000000 --- a/textoverlay/textoverlay.vcxproj +++ /dev/null @@ -1,78 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {9462DD15-5A1D-460A-B502-C9250D98D7A3} - textoverlay - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - Level3 - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/textoverlay/textoverlay.vcxproj.filters b/textoverlay/textoverlay.vcxproj.filters deleted file mode 100644 index 08f37acd..00000000 --- a/textoverlay/textoverlay.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/texture/texture.vcxproj b/texture/texture.vcxproj deleted file mode 100644 index 6686673e..00000000 --- a/texture/texture.vcxproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {57261E3A-6A05-4E33-B521-C4CB82D916B3} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/texture/texture.vcxproj.filters b/texture/texture.vcxproj.filters deleted file mode 100644 index 917fbe78..00000000 --- a/texture/texture.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/texture3d/texture3d.vcxproj b/texture3d/texture3d.vcxproj deleted file mode 100644 index 496020c4..00000000 --- a/texture3d/texture3d.vcxproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {D36B82DD-9114-44D2-A9C9-8DF0F8544BD5} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - true - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - true - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/texture3d/texture3d.vcxproj.filters b/texture3d/texture3d.vcxproj.filters deleted file mode 100644 index 5259cc61..00000000 --- a/texture3d/texture3d.vcxproj.filters +++ /dev/null @@ -1,53 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {f98305a8-a541-4aa2-9ee5-985eaa929027} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/texturearray/texturearray.vcxproj b/texturearray/texturearray.vcxproj deleted file mode 100644 index 5bbe9f4c..00000000 --- a/texturearray/texturearray.vcxproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {5E512F97-14DB-4CEE-A495-BD8AED789521} - texturearray - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/texturearray/texturearray.vcxproj.filters b/texturearray/texturearray.vcxproj.filters deleted file mode 100644 index fb15192a..00000000 --- a/texturearray/texturearray.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/texturecubemap/texturecubemap.vcxproj b/texturecubemap/texturecubemap.vcxproj deleted file mode 100644 index e0945c33..00000000 --- a/texturecubemap/texturecubemap.vcxproj +++ /dev/null @@ -1,101 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {0D4DE16B-71FE-4B17-8310-3FFFB9E873B7} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/texturecubemap/texturecubemap.vcxproj.filters b/texturecubemap/texturecubemap.vcxproj.filters deleted file mode 100644 index a6580707..00000000 --- a/texturecubemap/texturecubemap.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {3adf072b-32a9-412a-8eb5-5329a601df1a} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/texturemipmapgen/texturemipmapgen.vcxproj b/texturemipmapgen/texturemipmapgen.vcxproj deleted file mode 100644 index a12f35af..00000000 --- a/texturemipmapgen/texturemipmapgen.vcxproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {24AD09B4-6ABE-4A82-83E7-6A7799A88762} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/texturemipmapgen/texturemipmapgen.vcxproj.filters b/texturemipmapgen/texturemipmapgen.vcxproj.filters deleted file mode 100644 index ae852223..00000000 --- a/texturemipmapgen/texturemipmapgen.vcxproj.filters +++ /dev/null @@ -1,53 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {abe06c5e-339d-4f7b-b3c6-186a7240f658} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/texturesparseresidency/texturesparseresidency.vcxproj b/texturesparseresidency/texturesparseresidency.vcxproj deleted file mode 100644 index e33c425a..00000000 --- a/texturesparseresidency/texturesparseresidency.vcxproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {1FA0178C-F5E9-4B2E-A488-14F310F8DBD9} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/texturesparseresidency/texturesparseresidency.vcxproj.filters b/texturesparseresidency/texturesparseresidency.vcxproj.filters deleted file mode 100644 index ab373ccf..00000000 --- a/texturesparseresidency/texturesparseresidency.vcxproj.filters +++ /dev/null @@ -1,53 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {bbed2435-ec0f-473f-8082-787e5582bc19} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/triangle/triangle.vcxproj b/triangle/triangle.vcxproj deleted file mode 100644 index fd871927..00000000 --- a/triangle/triangle.vcxproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {3E6755A8-7370-4449-A8B7-4FCDCABD242C} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/triangle/triangle.vcxproj.filters b/triangle/triangle.vcxproj.filters deleted file mode 100644 index 0a207797..00000000 --- a/triangle/triangle.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/viewportarray/viewportarray.vcxproj b/viewportarray/viewportarray.vcxproj deleted file mode 100644 index 9c10d98e..00000000 --- a/viewportarray/viewportarray.vcxproj +++ /dev/null @@ -1,100 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - {CB2ABE1F-13C6-483E-AF1A-B933BC6A0F1B} - Win32Proj - 8.1 - - - - Application - true - v140 - - - Application - false - v140 - - - - - - - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - WIN32;_DEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - ProgramDatabase - Disabled - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - /FS %(AdditionalOptions) - - - true - Windows - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - MultiThreadedDLL - Level3 - ProgramDatabase - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - true - Windows - true - true - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/viewportarray/viewportarray.vcxproj.filters b/viewportarray/viewportarray.vcxproj.filters deleted file mode 100644 index e64a7e25..00000000 --- a/viewportarray/viewportarray.vcxproj.filters +++ /dev/null @@ -1,56 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - {8c3bf366-cd5b-4100-9524-13a0925f6143} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - Shaders - - - Shaders - - - Shaders - - - \ No newline at end of file diff --git a/vulkanExamples.sln b/vulkanExamples.sln deleted file mode 100644 index 2de23c96..00000000 --- a/vulkanExamples.sln +++ /dev/null @@ -1,425 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tessellation", "tessellation\tessellation.vcxproj", "{015C3F70-FFCE-45DA-80E0-5DED015868D7}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "displacement", "displacement\displacement.vcxproj", "{44B86F78-3931-4198-B189-6DF4B32FA8AE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "triangle", "triangle\triangle.vcxproj", "{3E6755A8-7370-4449-A8B7-4FCDCABD242C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pipelines", "pipelines\pipelines.vcxproj", "{B7839B09-4D40-4E88-95D7-00CFE120ADCC}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "geometryshader", "geometryshader\geometryshader.vcxproj", "{EA0130EC-A407-4F1F-97F4-7D0FB731475E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mesh", "mesh\mesh.vcxproj", "{5705CA9F-95A0-477C-9169-4CBB0484A44A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gears", "gears\gears.vcxproj", "{308FA88E-E958-4F2E-B571-21EBC19E06C6}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sphericalenvmapping", "sphericalenvmapping\sphericalenvmapping.vcxproj", "{BF2419E5-AF01-46F8-8408-6346FC204818}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "texture", "texture\texture.vcxproj", "{57261E3A-6A05-4E33-B521-C4CB82D916B3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "instancing", "instancing\instancing.vcxproj", "{CF2E27EC-5A81-412A-A3E2-E6EB5C8B66E3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vulkanscene", "vulkanscene\vulkanscene.vcxproj", "{A986C70B-C88A-4F07-BCFC-AAE795EE0755}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "parallaxmapping", "parallaxmapping\parallaxmapping.vcxproj", "{3DB08441-72C9-4172-8BA9-ECEE032387BA}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "offscreen", "offscreen\offscreen.vcxproj", "{97413B4D-F770-49A1-ABF6-BEFB2B1C509C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "radialblur", "radialblur\radialblur.vcxproj", "{3D85DD50-05FD-4177-944F-F93D180A0055}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bloom", "bloom\bloom.vcxproj", "{DF2888BD-8794-4074-8E9C-1E70443CE45E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "computeshader", "computeshader\computeshader.vcxproj", "{553C9532-8989-4851-9D59-557C64FF62BE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pushconstants", "pushconstants\pushconstants.vcxproj", "{6638BBE9-E47E-4A57-95A4-09474C37D023}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "computeparticles", "computeparticles\computeparticles.vcxproj", "{5A049556-EA1E-4985-8D0B-3748E5D56F68}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "texturecubemap", "texturecubemap\texturecubemap.vcxproj", "{0D4DE16B-71FE-4B17-8310-3FFFB9E873B7}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "texturearray", "texturearray\texturearray.vcxproj", "{5E512F97-14DB-4CEE-A495-BD8AED789521}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shadowmappingomni", "shadowmappingomni\shadowmappingomni.vcxproj", "{7B36E42B-5A35-429D-BCD6-C762BD43B2F5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "deferred", "deferred\deferred.vcxproj", "{AF2911F4-33BF-465E-9298-E46D58B929EF}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "occlusionquery", "occlusionquery\occlusionquery.vcxproj", "{506027E4-0A45-4141-95C9-9B0103809922}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "skeletalanimation", "skeletalanimation\skeletalanimation.vcxproj", "{469A1996-9BC5-4003-9564-C3816E3822E0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "distancefieldfonts", "distancefieldfonts\distancefieldfonts.vcxproj", "{ABBB2F3B-C176-4006-853F-FC695AEF5DA0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "multithreading", "multithreading\multithreading.vcxproj", "{F5703C3C-F495-4D5C-BAA5-A90C4E20C7B7}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "shadowmapping", "shadowmapping\shadowmapping.vcxproj", "{BF22CE41-AA83-45FE-813A-451E2EDF58D9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "particlefire", "particlefire\particlefire.vcxproj", "{A8DDE46D-0C36-49E5-83CB-19FF69493FA0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "raytracing", "raytracing\raytracing.vcxproj", "{8B1C24E5-CC00-484C-9F6F-8FFCBDA3AA30}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "multisampling", "multisampling\multisampling.vcxproj", "{34265930-5C09-447C-9C21-45FD933902FC}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "textoverlay", "textoverlay\textoverlay.vcxproj", "{9462DD15-5A1D-460A-B502-C9250D98D7A3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "debugmarker", "debugmarker\debugmarker.vcxproj", "{146FD6F8-5CB4-478E-A823-7350A0ACCF1D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "scenerendering", "scenerendering\scenerendering.vcxproj", "{D928DFBB-DB07-411E-A650-6D3CE697D7D0}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "terraintessellation", "terraintessellation\terraintessellation.vcxproj", "{6C6E48B1-5946-4754-9E31-E1C989EC25FE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "deferredshadows", "deferredshadows\deferredshadows.vcxproj", "{BFEB15A3-D252-4AF7-8CA8-B9396F374DDB}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Base", "Base", "{09B9A54B-FC57-4A98-9671-5706FC3846C9}" - ProjectSection(SolutionItems) = preProject - base\benchmark.hpp = base\benchmark.hpp - base\camera.hpp = base\camera.hpp - base\frustum.hpp = base\frustum.hpp - base\keycodes.hpp = base\keycodes.hpp - base\threadpool.hpp = base\threadpool.hpp - base\VulkanAndroid.cpp = base\VulkanAndroid.cpp - base\VulkanAndroid.h = base\VulkanAndroid.h - base\VulkanBuffer.hpp = base\VulkanBuffer.hpp - base\vulkandebug.cpp = base\vulkandebug.cpp - base\vulkandebug.h = base\vulkandebug.h - base\VulkanDevice.hpp = base\VulkanDevice.hpp - base\vulkanexamplebase.cpp = base\vulkanexamplebase.cpp - base\vulkanexamplebase.h = base\vulkanexamplebase.h - base\VulkanFrameBuffer.hpp = base\VulkanFrameBuffer.hpp - base\VulkanHeightmap.hpp = base\VulkanHeightmap.hpp - base\VulkanInitializers.hpp = base\VulkanInitializers.hpp - base\VulkanModel.hpp = base\VulkanModel.hpp - base\VulkanSwapChain.hpp = base\VulkanSwapChain.hpp - base\VulkanTextOverlay.hpp = base\VulkanTextOverlay.hpp - base\VulkanTexture.hpp = base\VulkanTexture.hpp - base\vulkantools.cpp = base\vulkantools.cpp - base\VulkanTools.h = base\VulkanTools.h - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "indirectdraw", "indirectdraw\indirectdraw.vcxproj", "{2BBDD10F-2C9D-4BEA-8C7B-1C510A2CE08B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "texturemipmapgen", "texturemipmapgen\texturemipmapgen.vcxproj", "{24AD09B4-6ABE-4A82-83E7-6A7799A88762}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Compute", "Compute", "{6B47BC47-0394-429E-9441-867EC23DFCD4}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Textures", "Textures", "{A8492D6D-5243-456E-8173-39B99F1FEA9C}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tessellation", "Tessellation", "{C93DE675-A816-4412-8E9F-1EFE9AC07750}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "texture3d", "texture3d\texture3d.vcxproj", "{D36B82DD-9114-44D2-A9C9-8DF0F8544BD5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "texturesparseresidency", "texturesparseresidency\texturesparseresidency.vcxproj", "{1FA0178C-F5E9-4B2E-A488-14F310F8DBD9}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "deferred", "deferred", "{460EE42F-4178-49EF-9AC0-415599B80303}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "deferredmultisampling", "deferredmultisampling\deferredmultisampling.vcxproj", "{0CB44B34-A81F-4002-9AC7-E0EEA55D8A60}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "computecullandlod", "computecullandlod\computecullandlod.vcxproj", "{8418A364-3D1C-4938-A2CC-C1D1433039F2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "subpasses", "subpasses\subpasses.vcxproj", "{DE1DEF4B-307E-45C2-90CC-8023327294E2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ssao", "ssao\ssao.vcxproj", "{43FCECF5-F5E1-45DB-972A-73942D459C0A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "computenbody", "computenbody\computenbody.vcxproj", "{6B4BC372-5897-40FB-91D4-421C2817F656}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{9E815C67-731B-4559-938E-23CD771F0860}" - ProjectSection(SolutionItems) = preProject - CMakeLists.txt = CMakeLists.txt - README.md = README.md - external\vulkan\vulkan.h = external\vulkan\vulkan.h - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "screenshot", "screenshot\screenshot.vcxproj", "{AD1DAD4D-A753-4A78-88E2-B4DCE15D482F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dynamicuniformbuffer", "dynamicuniformbuffer\dynamicuniformbuffer.vcxproj", "{3DB2A9C4-50BC-4390-A94F-F7F724238101}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "specializationconstants", "specializationconstants\specializationconstants.vcxproj", "{00F600D2-DF0E-4F07-B722-633F7C4B2F65}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "hdr", "hdr\hdr.vcxproj", "{582913B3-9B37-48CA-AEBD-69023DA9F7C8}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pbribl", "pbribl\pbribl.vcxproj", "{659987E9-863C-4B9B-A3D4-CBA7D67A9516}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pbrbasic", "pbrbasic\pbrbasic.vcxproj", "{92B2640A-0CC5-48EA-B34C-520BA13938D1}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "pbr", "pbr", "{BE290A75-7E65-4D0A-B419-774A309B6A60}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "viewportarray", "viewportarray\viewportarray.vcxproj", "{CB2ABE1F-13C6-483E-AF1A-B933BC6A0F1B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "imgui", "imgui\imgui.vcxproj", "{3BC2A597-A8BD-41AE-816B-2C242579D64E}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pbrtexture", "pbrtexture\pbrtexture.vcxproj", "{60316D67-E879-4671-B9BA-ED6B26F13AC7}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "computecloth", "computecloth\computecloth.vcxproj", "{12ACF921-90B1-44D9-AF06-B5C0F0B8191A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "stencilbuffer", "stencilbuffer\stencilbuffer.vcxproj", "{B154F271-9F07-4788-B563-E36DA74ED6F5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "computeheadless", "computeheadless\computeheadless.vcxproj", "{13862534-67C8-46B7-9574-531E987D8F37}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "renderheadless", "renderheadless\renderheadless.vcxproj", "{8CBD2720-82A5-480A-BB8C-3A77948AEF67}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {015C3F70-FFCE-45DA-80E0-5DED015868D7}.Debug|x64.ActiveCfg = Debug|x64 - {015C3F70-FFCE-45DA-80E0-5DED015868D7}.Debug|x64.Build.0 = Debug|x64 - {015C3F70-FFCE-45DA-80E0-5DED015868D7}.Release|x64.ActiveCfg = Release|x64 - {015C3F70-FFCE-45DA-80E0-5DED015868D7}.Release|x64.Build.0 = Release|x64 - {44B86F78-3931-4198-B189-6DF4B32FA8AE}.Debug|x64.ActiveCfg = Debug|x64 - {44B86F78-3931-4198-B189-6DF4B32FA8AE}.Debug|x64.Build.0 = Debug|x64 - {44B86F78-3931-4198-B189-6DF4B32FA8AE}.Release|x64.ActiveCfg = Release|x64 - {44B86F78-3931-4198-B189-6DF4B32FA8AE}.Release|x64.Build.0 = Release|x64 - {3E6755A8-7370-4449-A8B7-4FCDCABD242C}.Debug|x64.ActiveCfg = Debug|x64 - {3E6755A8-7370-4449-A8B7-4FCDCABD242C}.Debug|x64.Build.0 = Debug|x64 - {3E6755A8-7370-4449-A8B7-4FCDCABD242C}.Release|x64.ActiveCfg = Release|x64 - {3E6755A8-7370-4449-A8B7-4FCDCABD242C}.Release|x64.Build.0 = Release|x64 - {B7839B09-4D40-4E88-95D7-00CFE120ADCC}.Debug|x64.ActiveCfg = Debug|x64 - {B7839B09-4D40-4E88-95D7-00CFE120ADCC}.Debug|x64.Build.0 = Debug|x64 - {B7839B09-4D40-4E88-95D7-00CFE120ADCC}.Release|x64.ActiveCfg = Release|x64 - {B7839B09-4D40-4E88-95D7-00CFE120ADCC}.Release|x64.Build.0 = Release|x64 - {EA0130EC-A407-4F1F-97F4-7D0FB731475E}.Debug|x64.ActiveCfg = Debug|x64 - {EA0130EC-A407-4F1F-97F4-7D0FB731475E}.Debug|x64.Build.0 = Debug|x64 - {EA0130EC-A407-4F1F-97F4-7D0FB731475E}.Release|x64.ActiveCfg = Release|x64 - {EA0130EC-A407-4F1F-97F4-7D0FB731475E}.Release|x64.Build.0 = Release|x64 - {5705CA9F-95A0-477C-9169-4CBB0484A44A}.Debug|x64.ActiveCfg = Debug|x64 - {5705CA9F-95A0-477C-9169-4CBB0484A44A}.Debug|x64.Build.0 = Debug|x64 - {5705CA9F-95A0-477C-9169-4CBB0484A44A}.Release|x64.ActiveCfg = Release|x64 - {5705CA9F-95A0-477C-9169-4CBB0484A44A}.Release|x64.Build.0 = Release|x64 - {308FA88E-E958-4F2E-B571-21EBC19E06C6}.Debug|x64.ActiveCfg = Debug|x64 - {308FA88E-E958-4F2E-B571-21EBC19E06C6}.Debug|x64.Build.0 = Debug|x64 - {308FA88E-E958-4F2E-B571-21EBC19E06C6}.Release|x64.ActiveCfg = Release|x64 - {308FA88E-E958-4F2E-B571-21EBC19E06C6}.Release|x64.Build.0 = Release|x64 - {BF2419E5-AF01-46F8-8408-6346FC204818}.Debug|x64.ActiveCfg = Debug|x64 - {BF2419E5-AF01-46F8-8408-6346FC204818}.Debug|x64.Build.0 = Debug|x64 - {BF2419E5-AF01-46F8-8408-6346FC204818}.Release|x64.ActiveCfg = Release|x64 - {BF2419E5-AF01-46F8-8408-6346FC204818}.Release|x64.Build.0 = Release|x64 - {57261E3A-6A05-4E33-B521-C4CB82D916B3}.Debug|x64.ActiveCfg = Debug|x64 - {57261E3A-6A05-4E33-B521-C4CB82D916B3}.Debug|x64.Build.0 = Debug|x64 - {57261E3A-6A05-4E33-B521-C4CB82D916B3}.Release|x64.ActiveCfg = Release|x64 - {57261E3A-6A05-4E33-B521-C4CB82D916B3}.Release|x64.Build.0 = Release|x64 - {CF2E27EC-5A81-412A-A3E2-E6EB5C8B66E3}.Debug|x64.ActiveCfg = Debug|x64 - {CF2E27EC-5A81-412A-A3E2-E6EB5C8B66E3}.Debug|x64.Build.0 = Debug|x64 - {CF2E27EC-5A81-412A-A3E2-E6EB5C8B66E3}.Release|x64.ActiveCfg = Release|x64 - {CF2E27EC-5A81-412A-A3E2-E6EB5C8B66E3}.Release|x64.Build.0 = Release|x64 - {A986C70B-C88A-4F07-BCFC-AAE795EE0755}.Debug|x64.ActiveCfg = Debug|x64 - {A986C70B-C88A-4F07-BCFC-AAE795EE0755}.Debug|x64.Build.0 = Debug|x64 - {A986C70B-C88A-4F07-BCFC-AAE795EE0755}.Release|x64.ActiveCfg = Release|x64 - {A986C70B-C88A-4F07-BCFC-AAE795EE0755}.Release|x64.Build.0 = Release|x64 - {3DB08441-72C9-4172-8BA9-ECEE032387BA}.Debug|x64.ActiveCfg = Debug|x64 - {3DB08441-72C9-4172-8BA9-ECEE032387BA}.Debug|x64.Build.0 = Debug|x64 - {3DB08441-72C9-4172-8BA9-ECEE032387BA}.Release|x64.ActiveCfg = Release|x64 - {3DB08441-72C9-4172-8BA9-ECEE032387BA}.Release|x64.Build.0 = Release|x64 - {97413B4D-F770-49A1-ABF6-BEFB2B1C509C}.Debug|x64.ActiveCfg = Debug|x64 - {97413B4D-F770-49A1-ABF6-BEFB2B1C509C}.Debug|x64.Build.0 = Debug|x64 - {97413B4D-F770-49A1-ABF6-BEFB2B1C509C}.Release|x64.ActiveCfg = Release|x64 - {97413B4D-F770-49A1-ABF6-BEFB2B1C509C}.Release|x64.Build.0 = Release|x64 - {3D85DD50-05FD-4177-944F-F93D180A0055}.Debug|x64.ActiveCfg = Debug|x64 - {3D85DD50-05FD-4177-944F-F93D180A0055}.Debug|x64.Build.0 = Debug|x64 - {3D85DD50-05FD-4177-944F-F93D180A0055}.Release|x64.ActiveCfg = Release|x64 - {3D85DD50-05FD-4177-944F-F93D180A0055}.Release|x64.Build.0 = Release|x64 - {DF2888BD-8794-4074-8E9C-1E70443CE45E}.Debug|x64.ActiveCfg = Debug|x64 - {DF2888BD-8794-4074-8E9C-1E70443CE45E}.Debug|x64.Build.0 = Debug|x64 - {DF2888BD-8794-4074-8E9C-1E70443CE45E}.Release|x64.ActiveCfg = Release|x64 - {DF2888BD-8794-4074-8E9C-1E70443CE45E}.Release|x64.Build.0 = Release|x64 - {553C9532-8989-4851-9D59-557C64FF62BE}.Debug|x64.ActiveCfg = Debug|x64 - {553C9532-8989-4851-9D59-557C64FF62BE}.Debug|x64.Build.0 = Debug|x64 - {553C9532-8989-4851-9D59-557C64FF62BE}.Release|x64.ActiveCfg = Release|x64 - {553C9532-8989-4851-9D59-557C64FF62BE}.Release|x64.Build.0 = Release|x64 - {6638BBE9-E47E-4A57-95A4-09474C37D023}.Debug|x64.ActiveCfg = Debug|x64 - {6638BBE9-E47E-4A57-95A4-09474C37D023}.Debug|x64.Build.0 = Debug|x64 - {6638BBE9-E47E-4A57-95A4-09474C37D023}.Release|x64.ActiveCfg = Release|x64 - {6638BBE9-E47E-4A57-95A4-09474C37D023}.Release|x64.Build.0 = Release|x64 - {5A049556-EA1E-4985-8D0B-3748E5D56F68}.Debug|x64.ActiveCfg = Debug|x64 - {5A049556-EA1E-4985-8D0B-3748E5D56F68}.Debug|x64.Build.0 = Debug|x64 - {5A049556-EA1E-4985-8D0B-3748E5D56F68}.Release|x64.ActiveCfg = Release|x64 - {5A049556-EA1E-4985-8D0B-3748E5D56F68}.Release|x64.Build.0 = Release|x64 - {0D4DE16B-71FE-4B17-8310-3FFFB9E873B7}.Debug|x64.ActiveCfg = Debug|x64 - {0D4DE16B-71FE-4B17-8310-3FFFB9E873B7}.Debug|x64.Build.0 = Debug|x64 - {0D4DE16B-71FE-4B17-8310-3FFFB9E873B7}.Release|x64.ActiveCfg = Release|x64 - {0D4DE16B-71FE-4B17-8310-3FFFB9E873B7}.Release|x64.Build.0 = Release|x64 - {5E512F97-14DB-4CEE-A495-BD8AED789521}.Debug|x64.ActiveCfg = Debug|x64 - {5E512F97-14DB-4CEE-A495-BD8AED789521}.Debug|x64.Build.0 = Debug|x64 - {5E512F97-14DB-4CEE-A495-BD8AED789521}.Release|x64.ActiveCfg = Release|x64 - {5E512F97-14DB-4CEE-A495-BD8AED789521}.Release|x64.Build.0 = Release|x64 - {7B36E42B-5A35-429D-BCD6-C762BD43B2F5}.Debug|x64.ActiveCfg = Debug|x64 - {7B36E42B-5A35-429D-BCD6-C762BD43B2F5}.Debug|x64.Build.0 = Debug|x64 - {7B36E42B-5A35-429D-BCD6-C762BD43B2F5}.Release|x64.ActiveCfg = Release|x64 - {7B36E42B-5A35-429D-BCD6-C762BD43B2F5}.Release|x64.Build.0 = Release|x64 - {AF2911F4-33BF-465E-9298-E46D58B929EF}.Debug|x64.ActiveCfg = Debug|x64 - {AF2911F4-33BF-465E-9298-E46D58B929EF}.Debug|x64.Build.0 = Debug|x64 - {AF2911F4-33BF-465E-9298-E46D58B929EF}.Release|x64.ActiveCfg = Release|x64 - {AF2911F4-33BF-465E-9298-E46D58B929EF}.Release|x64.Build.0 = Release|x64 - {506027E4-0A45-4141-95C9-9B0103809922}.Debug|x64.ActiveCfg = Debug|x64 - {506027E4-0A45-4141-95C9-9B0103809922}.Debug|x64.Build.0 = Debug|x64 - {506027E4-0A45-4141-95C9-9B0103809922}.Release|x64.ActiveCfg = Release|x64 - {506027E4-0A45-4141-95C9-9B0103809922}.Release|x64.Build.0 = Release|x64 - {469A1996-9BC5-4003-9564-C3816E3822E0}.Debug|x64.ActiveCfg = Debug|x64 - {469A1996-9BC5-4003-9564-C3816E3822E0}.Debug|x64.Build.0 = Debug|x64 - {469A1996-9BC5-4003-9564-C3816E3822E0}.Release|x64.ActiveCfg = Release|x64 - {469A1996-9BC5-4003-9564-C3816E3822E0}.Release|x64.Build.0 = Release|x64 - {ABBB2F3B-C176-4006-853F-FC695AEF5DA0}.Debug|x64.ActiveCfg = Debug|x64 - {ABBB2F3B-C176-4006-853F-FC695AEF5DA0}.Debug|x64.Build.0 = Debug|x64 - {ABBB2F3B-C176-4006-853F-FC695AEF5DA0}.Release|x64.ActiveCfg = Release|x64 - {ABBB2F3B-C176-4006-853F-FC695AEF5DA0}.Release|x64.Build.0 = Release|x64 - {F5703C3C-F495-4D5C-BAA5-A90C4E20C7B7}.Debug|x64.ActiveCfg = Debug|x64 - {F5703C3C-F495-4D5C-BAA5-A90C4E20C7B7}.Debug|x64.Build.0 = Debug|x64 - {F5703C3C-F495-4D5C-BAA5-A90C4E20C7B7}.Release|x64.ActiveCfg = Release|x64 - {F5703C3C-F495-4D5C-BAA5-A90C4E20C7B7}.Release|x64.Build.0 = Release|x64 - {BF22CE41-AA83-45FE-813A-451E2EDF58D9}.Debug|x64.ActiveCfg = Debug|x64 - {BF22CE41-AA83-45FE-813A-451E2EDF58D9}.Debug|x64.Build.0 = Debug|x64 - {BF22CE41-AA83-45FE-813A-451E2EDF58D9}.Release|x64.ActiveCfg = Release|x64 - {BF22CE41-AA83-45FE-813A-451E2EDF58D9}.Release|x64.Build.0 = Release|x64 - {A8DDE46D-0C36-49E5-83CB-19FF69493FA0}.Debug|x64.ActiveCfg = Debug|x64 - {A8DDE46D-0C36-49E5-83CB-19FF69493FA0}.Debug|x64.Build.0 = Debug|x64 - {A8DDE46D-0C36-49E5-83CB-19FF69493FA0}.Release|x64.ActiveCfg = Release|x64 - {A8DDE46D-0C36-49E5-83CB-19FF69493FA0}.Release|x64.Build.0 = Release|x64 - {8B1C24E5-CC00-484C-9F6F-8FFCBDA3AA30}.Debug|x64.ActiveCfg = Debug|x64 - {8B1C24E5-CC00-484C-9F6F-8FFCBDA3AA30}.Debug|x64.Build.0 = Debug|x64 - {8B1C24E5-CC00-484C-9F6F-8FFCBDA3AA30}.Release|x64.ActiveCfg = Release|x64 - {8B1C24E5-CC00-484C-9F6F-8FFCBDA3AA30}.Release|x64.Build.0 = Release|x64 - {34265930-5C09-447C-9C21-45FD933902FC}.Debug|x64.ActiveCfg = Debug|x64 - {34265930-5C09-447C-9C21-45FD933902FC}.Debug|x64.Build.0 = Debug|x64 - {34265930-5C09-447C-9C21-45FD933902FC}.Release|x64.ActiveCfg = Release|x64 - {34265930-5C09-447C-9C21-45FD933902FC}.Release|x64.Build.0 = Release|x64 - {9462DD15-5A1D-460A-B502-C9250D98D7A3}.Debug|x64.ActiveCfg = Debug|x64 - {9462DD15-5A1D-460A-B502-C9250D98D7A3}.Debug|x64.Build.0 = Debug|x64 - {9462DD15-5A1D-460A-B502-C9250D98D7A3}.Release|x64.ActiveCfg = Release|x64 - {9462DD15-5A1D-460A-B502-C9250D98D7A3}.Release|x64.Build.0 = Release|x64 - {146FD6F8-5CB4-478E-A823-7350A0ACCF1D}.Debug|x64.ActiveCfg = Debug|x64 - {146FD6F8-5CB4-478E-A823-7350A0ACCF1D}.Debug|x64.Build.0 = Debug|x64 - {146FD6F8-5CB4-478E-A823-7350A0ACCF1D}.Release|x64.ActiveCfg = Release|x64 - {146FD6F8-5CB4-478E-A823-7350A0ACCF1D}.Release|x64.Build.0 = Release|x64 - {D928DFBB-DB07-411E-A650-6D3CE697D7D0}.Debug|x64.ActiveCfg = Debug|x64 - {D928DFBB-DB07-411E-A650-6D3CE697D7D0}.Debug|x64.Build.0 = Debug|x64 - {D928DFBB-DB07-411E-A650-6D3CE697D7D0}.Release|x64.ActiveCfg = Release|x64 - {D928DFBB-DB07-411E-A650-6D3CE697D7D0}.Release|x64.Build.0 = Release|x64 - {6C6E48B1-5946-4754-9E31-E1C989EC25FE}.Debug|x64.ActiveCfg = Debug|x64 - {6C6E48B1-5946-4754-9E31-E1C989EC25FE}.Debug|x64.Build.0 = Debug|x64 - {6C6E48B1-5946-4754-9E31-E1C989EC25FE}.Release|x64.ActiveCfg = Release|x64 - {6C6E48B1-5946-4754-9E31-E1C989EC25FE}.Release|x64.Build.0 = Release|x64 - {BFEB15A3-D252-4AF7-8CA8-B9396F374DDB}.Debug|x64.ActiveCfg = Debug|x64 - {BFEB15A3-D252-4AF7-8CA8-B9396F374DDB}.Debug|x64.Build.0 = Debug|x64 - {BFEB15A3-D252-4AF7-8CA8-B9396F374DDB}.Release|x64.ActiveCfg = Release|x64 - {BFEB15A3-D252-4AF7-8CA8-B9396F374DDB}.Release|x64.Build.0 = Release|x64 - {2BBDD10F-2C9D-4BEA-8C7B-1C510A2CE08B}.Debug|x64.ActiveCfg = Debug|x64 - {2BBDD10F-2C9D-4BEA-8C7B-1C510A2CE08B}.Debug|x64.Build.0 = Debug|x64 - {2BBDD10F-2C9D-4BEA-8C7B-1C510A2CE08B}.Release|x64.ActiveCfg = Release|x64 - {2BBDD10F-2C9D-4BEA-8C7B-1C510A2CE08B}.Release|x64.Build.0 = Release|x64 - {24AD09B4-6ABE-4A82-83E7-6A7799A88762}.Debug|x64.ActiveCfg = Debug|x64 - {24AD09B4-6ABE-4A82-83E7-6A7799A88762}.Debug|x64.Build.0 = Debug|x64 - {24AD09B4-6ABE-4A82-83E7-6A7799A88762}.Release|x64.ActiveCfg = Release|x64 - {24AD09B4-6ABE-4A82-83E7-6A7799A88762}.Release|x64.Build.0 = Release|x64 - {D36B82DD-9114-44D2-A9C9-8DF0F8544BD5}.Debug|x64.ActiveCfg = Debug|x64 - {D36B82DD-9114-44D2-A9C9-8DF0F8544BD5}.Debug|x64.Build.0 = Debug|x64 - {D36B82DD-9114-44D2-A9C9-8DF0F8544BD5}.Release|x64.ActiveCfg = Release|x64 - {D36B82DD-9114-44D2-A9C9-8DF0F8544BD5}.Release|x64.Build.0 = Release|x64 - {1FA0178C-F5E9-4B2E-A488-14F310F8DBD9}.Debug|x64.ActiveCfg = Debug|x64 - {1FA0178C-F5E9-4B2E-A488-14F310F8DBD9}.Debug|x64.Build.0 = Debug|x64 - {1FA0178C-F5E9-4B2E-A488-14F310F8DBD9}.Release|x64.ActiveCfg = Release|x64 - {1FA0178C-F5E9-4B2E-A488-14F310F8DBD9}.Release|x64.Build.0 = Release|x64 - {0CB44B34-A81F-4002-9AC7-E0EEA55D8A60}.Debug|x64.ActiveCfg = Debug|x64 - {0CB44B34-A81F-4002-9AC7-E0EEA55D8A60}.Debug|x64.Build.0 = Debug|x64 - {0CB44B34-A81F-4002-9AC7-E0EEA55D8A60}.Release|x64.ActiveCfg = Release|x64 - {0CB44B34-A81F-4002-9AC7-E0EEA55D8A60}.Release|x64.Build.0 = Release|x64 - {8418A364-3D1C-4938-A2CC-C1D1433039F2}.Debug|x64.ActiveCfg = Debug|x64 - {8418A364-3D1C-4938-A2CC-C1D1433039F2}.Debug|x64.Build.0 = Debug|x64 - {8418A364-3D1C-4938-A2CC-C1D1433039F2}.Release|x64.ActiveCfg = Release|x64 - {8418A364-3D1C-4938-A2CC-C1D1433039F2}.Release|x64.Build.0 = Release|x64 - {DE1DEF4B-307E-45C2-90CC-8023327294E2}.Debug|x64.ActiveCfg = Debug|x64 - {DE1DEF4B-307E-45C2-90CC-8023327294E2}.Debug|x64.Build.0 = Debug|x64 - {DE1DEF4B-307E-45C2-90CC-8023327294E2}.Release|x64.ActiveCfg = Release|x64 - {DE1DEF4B-307E-45C2-90CC-8023327294E2}.Release|x64.Build.0 = Release|x64 - {43FCECF5-F5E1-45DB-972A-73942D459C0A}.Debug|x64.ActiveCfg = Debug|x64 - {43FCECF5-F5E1-45DB-972A-73942D459C0A}.Debug|x64.Build.0 = Debug|x64 - {43FCECF5-F5E1-45DB-972A-73942D459C0A}.Release|x64.ActiveCfg = Release|x64 - {43FCECF5-F5E1-45DB-972A-73942D459C0A}.Release|x64.Build.0 = Release|x64 - {6B4BC372-5897-40FB-91D4-421C2817F656}.Debug|x64.ActiveCfg = Debug|x64 - {6B4BC372-5897-40FB-91D4-421C2817F656}.Debug|x64.Build.0 = Debug|x64 - {6B4BC372-5897-40FB-91D4-421C2817F656}.Release|x64.ActiveCfg = Release|x64 - {6B4BC372-5897-40FB-91D4-421C2817F656}.Release|x64.Build.0 = Release|x64 - {AD1DAD4D-A753-4A78-88E2-B4DCE15D482F}.Debug|x64.ActiveCfg = Debug|x64 - {AD1DAD4D-A753-4A78-88E2-B4DCE15D482F}.Debug|x64.Build.0 = Debug|x64 - {AD1DAD4D-A753-4A78-88E2-B4DCE15D482F}.Release|x64.ActiveCfg = Release|x64 - {AD1DAD4D-A753-4A78-88E2-B4DCE15D482F}.Release|x64.Build.0 = Release|x64 - {3DB2A9C4-50BC-4390-A94F-F7F724238101}.Debug|x64.ActiveCfg = Debug|x64 - {3DB2A9C4-50BC-4390-A94F-F7F724238101}.Debug|x64.Build.0 = Debug|x64 - {3DB2A9C4-50BC-4390-A94F-F7F724238101}.Release|x64.ActiveCfg = Release|x64 - {3DB2A9C4-50BC-4390-A94F-F7F724238101}.Release|x64.Build.0 = Release|x64 - {00F600D2-DF0E-4F07-B722-633F7C4B2F65}.Debug|x64.ActiveCfg = Debug|x64 - {00F600D2-DF0E-4F07-B722-633F7C4B2F65}.Debug|x64.Build.0 = Debug|x64 - {00F600D2-DF0E-4F07-B722-633F7C4B2F65}.Release|x64.ActiveCfg = Release|x64 - {00F600D2-DF0E-4F07-B722-633F7C4B2F65}.Release|x64.Build.0 = Release|x64 - {582913B3-9B37-48CA-AEBD-69023DA9F7C8}.Debug|x64.ActiveCfg = Debug|x64 - {582913B3-9B37-48CA-AEBD-69023DA9F7C8}.Debug|x64.Build.0 = Debug|x64 - {582913B3-9B37-48CA-AEBD-69023DA9F7C8}.Release|x64.ActiveCfg = Release|x64 - {582913B3-9B37-48CA-AEBD-69023DA9F7C8}.Release|x64.Build.0 = Release|x64 - {659987E9-863C-4B9B-A3D4-CBA7D67A9516}.Debug|x64.ActiveCfg = Debug|x64 - {659987E9-863C-4B9B-A3D4-CBA7D67A9516}.Debug|x64.Build.0 = Debug|x64 - {659987E9-863C-4B9B-A3D4-CBA7D67A9516}.Release|x64.ActiveCfg = Release|x64 - {659987E9-863C-4B9B-A3D4-CBA7D67A9516}.Release|x64.Build.0 = Release|x64 - {92B2640A-0CC5-48EA-B34C-520BA13938D1}.Debug|x64.ActiveCfg = Debug|x64 - {92B2640A-0CC5-48EA-B34C-520BA13938D1}.Debug|x64.Build.0 = Debug|x64 - {92B2640A-0CC5-48EA-B34C-520BA13938D1}.Release|x64.ActiveCfg = Release|x64 - {92B2640A-0CC5-48EA-B34C-520BA13938D1}.Release|x64.Build.0 = Release|x64 - {CB2ABE1F-13C6-483E-AF1A-B933BC6A0F1B}.Debug|x64.ActiveCfg = Debug|x64 - {CB2ABE1F-13C6-483E-AF1A-B933BC6A0F1B}.Debug|x64.Build.0 = Debug|x64 - {CB2ABE1F-13C6-483E-AF1A-B933BC6A0F1B}.Release|x64.ActiveCfg = Release|x64 - {CB2ABE1F-13C6-483E-AF1A-B933BC6A0F1B}.Release|x64.Build.0 = Release|x64 - {3BC2A597-A8BD-41AE-816B-2C242579D64E}.Debug|x64.ActiveCfg = Debug|x64 - {3BC2A597-A8BD-41AE-816B-2C242579D64E}.Debug|x64.Build.0 = Debug|x64 - {3BC2A597-A8BD-41AE-816B-2C242579D64E}.Release|x64.ActiveCfg = Release|x64 - {3BC2A597-A8BD-41AE-816B-2C242579D64E}.Release|x64.Build.0 = Release|x64 - {60316D67-E879-4671-B9BA-ED6B26F13AC7}.Debug|x64.ActiveCfg = Debug|x64 - {60316D67-E879-4671-B9BA-ED6B26F13AC7}.Debug|x64.Build.0 = Debug|x64 - {60316D67-E879-4671-B9BA-ED6B26F13AC7}.Release|x64.ActiveCfg = Release|x64 - {60316D67-E879-4671-B9BA-ED6B26F13AC7}.Release|x64.Build.0 = Release|x64 - {12ACF921-90B1-44D9-AF06-B5C0F0B8191A}.Debug|x64.ActiveCfg = Debug|x64 - {12ACF921-90B1-44D9-AF06-B5C0F0B8191A}.Debug|x64.Build.0 = Debug|x64 - {12ACF921-90B1-44D9-AF06-B5C0F0B8191A}.Release|x64.ActiveCfg = Release|x64 - {12ACF921-90B1-44D9-AF06-B5C0F0B8191A}.Release|x64.Build.0 = Release|x64 - {B154F271-9F07-4788-B563-E36DA74ED6F5}.Debug|x64.ActiveCfg = Debug|x64 - {B154F271-9F07-4788-B563-E36DA74ED6F5}.Debug|x64.Build.0 = Debug|x64 - {B154F271-9F07-4788-B563-E36DA74ED6F5}.Release|x64.ActiveCfg = Release|x64 - {B154F271-9F07-4788-B563-E36DA74ED6F5}.Release|x64.Build.0 = Release|x64 - {13862534-67C8-46B7-9574-531E987D8F37}.Debug|x64.ActiveCfg = Debug|x64 - {13862534-67C8-46B7-9574-531E987D8F37}.Debug|x64.Build.0 = Debug|x64 - {13862534-67C8-46B7-9574-531E987D8F37}.Release|x64.ActiveCfg = Release|x64 - {13862534-67C8-46B7-9574-531E987D8F37}.Release|x64.Build.0 = Release|x64 - {8CBD2720-82A5-480A-BB8C-3A77948AEF67}.Debug|x64.ActiveCfg = Debug|x64 - {8CBD2720-82A5-480A-BB8C-3A77948AEF67}.Debug|x64.Build.0 = Debug|x64 - {8CBD2720-82A5-480A-BB8C-3A77948AEF67}.Release|x64.ActiveCfg = Release|x64 - {8CBD2720-82A5-480A-BB8C-3A77948AEF67}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {015C3F70-FFCE-45DA-80E0-5DED015868D7} = {C93DE675-A816-4412-8E9F-1EFE9AC07750} - {44B86F78-3931-4198-B189-6DF4B32FA8AE} = {C93DE675-A816-4412-8E9F-1EFE9AC07750} - {57261E3A-6A05-4E33-B521-C4CB82D916B3} = {A8492D6D-5243-456E-8173-39B99F1FEA9C} - {553C9532-8989-4851-9D59-557C64FF62BE} = {6B47BC47-0394-429E-9441-867EC23DFCD4} - {5A049556-EA1E-4985-8D0B-3748E5D56F68} = {6B47BC47-0394-429E-9441-867EC23DFCD4} - {0D4DE16B-71FE-4B17-8310-3FFFB9E873B7} = {A8492D6D-5243-456E-8173-39B99F1FEA9C} - {5E512F97-14DB-4CEE-A495-BD8AED789521} = {A8492D6D-5243-456E-8173-39B99F1FEA9C} - {AF2911F4-33BF-465E-9298-E46D58B929EF} = {460EE42F-4178-49EF-9AC0-415599B80303} - {8B1C24E5-CC00-484C-9F6F-8FFCBDA3AA30} = {6B47BC47-0394-429E-9441-867EC23DFCD4} - {6C6E48B1-5946-4754-9E31-E1C989EC25FE} = {C93DE675-A816-4412-8E9F-1EFE9AC07750} - {BFEB15A3-D252-4AF7-8CA8-B9396F374DDB} = {460EE42F-4178-49EF-9AC0-415599B80303} - {24AD09B4-6ABE-4A82-83E7-6A7799A88762} = {A8492D6D-5243-456E-8173-39B99F1FEA9C} - {D36B82DD-9114-44D2-A9C9-8DF0F8544BD5} = {A8492D6D-5243-456E-8173-39B99F1FEA9C} - {1FA0178C-F5E9-4B2E-A488-14F310F8DBD9} = {A8492D6D-5243-456E-8173-39B99F1FEA9C} - {0CB44B34-A81F-4002-9AC7-E0EEA55D8A60} = {460EE42F-4178-49EF-9AC0-415599B80303} - {8418A364-3D1C-4938-A2CC-C1D1433039F2} = {6B47BC47-0394-429E-9441-867EC23DFCD4} - {6B4BC372-5897-40FB-91D4-421C2817F656} = {6B47BC47-0394-429E-9441-867EC23DFCD4} - {659987E9-863C-4B9B-A3D4-CBA7D67A9516} = {BE290A75-7E65-4D0A-B419-774A309B6A60} - {92B2640A-0CC5-48EA-B34C-520BA13938D1} = {BE290A75-7E65-4D0A-B419-774A309B6A60} - {60316D67-E879-4671-B9BA-ED6B26F13AC7} = {BE290A75-7E65-4D0A-B419-774A309B6A60} - {12ACF921-90B1-44D9-AF06-B5C0F0B8191A} = {6B47BC47-0394-429E-9441-867EC23DFCD4} - {13862534-67C8-46B7-9574-531E987D8F37} = {6B47BC47-0394-429E-9441-867EC23DFCD4} - EndGlobalSection -EndGlobal diff --git a/vulkanExamples.vcxproj b/vulkanExamples.vcxproj deleted file mode 100644 index ac90e64e..00000000 --- a/vulkanExamples.vcxproj +++ /dev/null @@ -1,71 +0,0 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - - {7893C033-F3EE-490E-BDAB-BB447E88CD8A} - vulkanExamples - - - - Application - true - v140 - MultiByte - - - Application - false - v140 - true - MultiByte - - - - - - - - - - - - - - - Level3 - Disabled - true - - - true - - - - - Level3 - MaxSpeed - true - true - true - - - true - true - true - - - - - - - - \ No newline at end of file diff --git a/vulkanExamples.vcxproj.filters b/vulkanExamples.vcxproj.filters deleted file mode 100644 index 6a1782f7..00000000 --- a/vulkanExamples.vcxproj.filters +++ /dev/null @@ -1,17 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - \ No newline at end of file diff --git a/vulkanscene/vulkanscene.vcxproj b/vulkanscene/vulkanscene.vcxproj deleted file mode 100644 index 894cd287..00000000 --- a/vulkanscene/vulkanscene.vcxproj +++ /dev/null @@ -1,77 +0,0 @@ - - - - - Debug - x64 - - - Release - x64 - - - - - - - - - - - - - - - {A986C70B-C88A-4F07-BCFC-AAE795EE0755} - vulkanScene - 8.1 - - - - v140 - - - v140 - - - - - - - true - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - $(SolutionDir)\bin\ - $(SolutionDir)\bin\intermediate\$(ProjectName)\$(ConfigurationName) - - - - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - WIN32;_WINDOWS;_DEBUG;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX - MultiThreadedDebugDLL - Disabled - true - /FS %(AdditionalOptions) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - true - %(AdditionalLibraryDirectories) - Console - - - - - WIN32;NDEBUG;_WINDOWS;VK_USE_PLATFORM_WIN32_KHR;_USE_MATH_DEFINES;NOMINMAX;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - ..\base;..\external\glm;..\external\gli;..\external\assimp;..\external;%(AdditionalIncludeDirectories) - - - ..\libs\vulkan\vulkan-1.lib;..\libs\assimp\assimp.lib;%(AdditionalDependencies) - - - - - - \ No newline at end of file diff --git a/vulkanscene/vulkanscene.vcxproj.filters b/vulkanscene/vulkanscene.vcxproj.filters deleted file mode 100644 index ce9bf5d0..00000000 --- a/vulkanscene/vulkanscene.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hh;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - \ No newline at end of file