mirror of
https://gitea.windcorp.ru/Wind-Corporation/Progressia.git
synced 2025-04-22 00:40:46 +03:00
24 lines
332 B
C++
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
|