Change include paths and argument type on main functions to ease linux adoption (#307)

This commit is contained in:
Andreas Süßenbach
2019-03-19 15:35:08 +01:00
committed by Markus Tavenrath
parent 3f20016ba9
commit 45590a9bd7
19 changed files with 30 additions and 30 deletions

View File

@@ -15,8 +15,8 @@
// VulkanHpp Samples : 11_InitShaders
// Initialize vertex and fragment shaders
#include "..\utils\shaders.hpp"
#include "..\utils\utils.hpp"
#include "../utils/shaders.hpp"
#include "../utils/utils.hpp"
#include "vulkan/vulkan.hpp"
#include "SPIRV/GlslangToSpv.h"
#include <iostream>
@@ -24,7 +24,7 @@
static char const* AppName = "11_InitShaders";
static char const* EngineName = "Vulkan.hpp";
int main(int /*argc*/, char * /*argv[]*/)
int main(int /*argc*/, char ** /*argv*/)
{
try
{