| 1776 | } |
| 1777 | |
| 1778 | void VulkanBaseApp::mainLoop() |
| 1779 | { |
| 1780 | while (!glfwWindowShouldClose(m_window)) { |
| 1781 | glfwPollEvents(); |
| 1782 | drawFrame(); |
| 1783 | } |
| 1784 | vkDeviceWaitIdle(m_device); |
| 1785 | } |
| 1786 | |
| 1787 | void readFile(std::istream &s, std::vector<char> &data) |
| 1788 | { |