Compare commits

..

No commits in common. 'e62723d4ca83f528c55ba63117ee8a234ba3d465' and '689de18da756f637d2a53a912e7e624f645376af' have entirely different histories.

  1. 6
      src/vulkan/application.hpp

@ -55,9 +55,9 @@ private:
void recordCommandBuffer(VkCommandBuffer commandBuffer, uint32_t imageIndex);
VkSemaphore imageAvailableSemaphore = VK_NULL_HANDLE;
VkSemaphore renderFinishedSemaphore = VK_NULL_HANDLE;
VkFence inFlightFence = VK_NULL_HANDLE;
VkSemaphore imageAvailableSemaphore;
VkSemaphore renderFinishedSemaphore;
VkFence inFlightFence;
void drawFrame();
void createSyncObjects();

Loading…
Cancel
Save