Update platform creation code

This commit is contained in:
2021-02-02 16:14:15 +01:00
parent aede8c9e59
commit 2922e74f07
4 changed files with 79 additions and 14 deletions

View File

@@ -8,6 +8,7 @@
#include "Scene/VulkanGeometry.hpp"
#include "Scene/VulkanNode.hpp"
#include "Scene/VulkanShader.hpp"
#include "Host/PlatformProducer.hpp"
#include <stdexcept>
namespace openVulkanoCpp::Vulkan
@@ -170,4 +171,6 @@ namespace openVulkanoCpp::Vulkan
}
cmdHelper->cmdBuffer.end();
}
}
RendererProducerRegistration<Renderer> rendererRegistration(RenderAPI::Vulkan);
}