Fixed indentation and unnecessary whitespaces in Tutorial01.cpp and Tutorial04.cpp.

This commit is contained in:
plapins
2016-04-07 08:35:47 +02:00
parent 506089c206
commit f6b78a7154
2 changed files with 3 additions and 3 deletions

View File

@@ -78,8 +78,8 @@ namespace Tutorial {
#define VK_EXPORTED_FUNCTION( fun ) \
if( !(fun = (PFN_##fun)LoadProcAddress( VulkanLibrary, #fun )) ) { \
printf( "Could not load exported function: " #fun "!\n" ); \
return false; \
printf( "Could not load exported function: " #fun "!\n" ); \
return false; \
}
#include "ListOfFunctions.inl"

View File

@@ -133,7 +133,7 @@ namespace Tutorial {
i // uint32_t memoryTypeIndex
};
if( vkAllocateMemory( GetDevice( ), &memory_allocate_info, nullptr, memory ) == VK_SUCCESS ) {
if( vkAllocateMemory( GetDevice(), &memory_allocate_info, nullptr, memory ) == VK_SUCCESS ) {
return true;
}
}