Example file naming

This commit is contained in:
saschawillems 2017-03-31 09:59:32 +02:00
parent c849d18db3
commit 2efa12083b
3 changed files with 5 additions and 5 deletions

View file

@ -85,7 +85,7 @@
<ClCompile Include="..\external\imgui\imgui.cpp" />
<ClCompile Include="..\external\imgui\imgui_demo.cpp" />
<ClCompile Include="..\external\imgui\imgui_draw.cpp" />
<ClCompile Include="imgui_main.cpp" />
<ClCompile Include="main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\base\vulkandebug.h" />

View file

@ -30,9 +30,6 @@
<ClCompile Include="..\base\vulkantools.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="imgui_main.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="..\external\imgui\imgui.cpp">
<Filter>imgui</Filter>
</ClCompile>
@ -42,6 +39,9 @@
<ClCompile Include="..\external\imgui\imgui_draw.cpp">
<Filter>imgui</Filter>
</ClCompile>
<ClCompile Include="main.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\base\vulkandebug.h">

View file

@ -28,7 +28,7 @@
#include "VulkanBuffer.hpp"
#include "VulkanModel.hpp"
#define ENABLE_VALIDATION true
#define ENABLE_VALIDATION false
// Options and values to display/toggle from the UI
struct UISettings {