54 inline static void main(
int argc,
char** argv) {
56 recreateVKCacheApplication->run(argc, argv,
"Recreate VK cache Application",
nullptr, Application::WINDOW_HINT_INVISIBLE);
65 Engine::getInstance()->dispose();
69 Engine::getInstance()->initialize();
70 if (Engine::getInstance()->getGraphicsRendererType() != Renderer::RENDERERTYPE_VULKAN) {
71 Console::println(
"Engine has not been compiled with -DVULKAN, Vulkan shader cache can not get created. Exiting.");
76 void reshape(int32_t width, int32_t height)
override {
77 Engine::getInstance()->reshape(width, height);
85int main(
int argc,
char** argv)
87 Console::println(
string(
"recreatevkcache ") + Version::getVersion());
88 Console::println(Version::getCopyright());
90 Console::println(
"Deleting shader/vk folder");
92 FileSystem::getInstance()->removePath(
"shader/vk",
true);
94 Console::println(
string() +
"An error occurred: " + exception.what());
97 if (FileSystem::getInstance()->fileExists(
"shader/vk") ==
false) {
98 FileSystem::getInstance()->createPath(
"shader/vk");
101 Console::println(
string() +
"An error occurred: " + exception.what());
103 Console::println(
"Creating shader/vk shader cache");
105 Console::println(
"Done");
Application base class, please make sure to allocate application on heap to have correct application ...
File system singleton class.
std::exception Exception
Exception base class.
int main(int argc, char **argv)