Create present complete semaphore in example base class (#60)

This commit is contained in:
saschawillems 2016-03-06 12:57:23 +01:00
parent 4ff8fbf71c
commit 71cdb93234
2 changed files with 9 additions and 0 deletions

View file

@ -88,6 +88,8 @@ protected:
VkPipelineCache pipelineCache;
// Wraps the swap chain to present images (framebuffers) to the windowing system
VulkanSwapChain swapChain;
// Semaphore to synchronize image presentation
VkSemaphore presentCompleteSemaphore;
// Simple texture loader
vkTools::VulkanTextureLoader *textureLoader = nullptr;
public: