Progressia/desktop/graphics/vulkan_mgmt.h
2022-10-09 17:25:45 +03:00

24 lines
332 B
C++

#pragma once
#include "vulkan_common.h"
namespace progressia {
namespace desktop {
void initializeVulkan();
Vulkan *getVulkan();
void resizeVulkanSurface();
/*
* Returns false when the frame should be skipped
*/
bool startRender();
void endRender();
void shutdownVulkan();
} // namespace desktop
} // namespace progressia