aboutsummaryrefslogtreecommitdiff
path: root/core/src/Entrypoint/Vulkan.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2021-04-10 21:13:34 -0700
committerrtk0c <[email protected]>2021-04-10 21:13:34 -0700
commit568fcc1dfe40c37b57b7baa2dea93b291d3fa956 (patch)
tree826b410c502a950c1d4804d351959da914003b36 /core/src/Entrypoint/Vulkan.hpp
parent4303d0be47526b35e5bb3e3be001da227dae5d96 (diff)
Add dx11, dx12, and vulkan backends
Diffstat (limited to 'core/src/Entrypoint/Vulkan.hpp')
-rw-r--r--core/src/Entrypoint/Vulkan.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/core/src/Entrypoint/Vulkan.hpp b/core/src/Entrypoint/Vulkan.hpp
deleted file mode 100644
index 6404806..0000000
--- a/core/src/Entrypoint/Vulkan.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-
-#include "Entrypoint/Common.hpp"
-
-class VulkanBackend : public RenderingBackend {
-public:
- VulkanBackend();
- virtual ~VulkanBackend() = default;
- virtual void BeginFrame() override;
- virtual void EndFrame() override;
-};