Updated Tutorial03 to incorporate changes introduted in VulkanCommon class (added semaphores, removed image view creation for each swapchain image).

This commit is contained in:
plapins
2016-04-22 23:16:01 +02:00
parent ff48362533
commit e9929a92a7
3 changed files with 58 additions and 66 deletions

View File

@@ -34,6 +34,9 @@ int main( int argc, char **argv ) {
if( !tutorial03.CreatePipeline() ) {
return -1;
}
if( !tutorial03.CreateSemaphores() ) {
return -1;
}
if( !tutorial03.CreateCommandBuffers() ) {
return -1;
}