ddnet/src/engine/client/backend/vulkan/backend_vulkan.h
Jupeyy 365c48413f Switch to Vulkan 1.1
Since the vulkan loader drops support for useful extensions (or the extension loading process changed between 1.0 & 1.1, not sure)
Which causes OBS not to work
2022-11-02 12:54:04 +01:00

12 lines
329 B
C++

#ifndef ENGINE_CLIENT_BACKEND_VULKAN_BACKEND_VULKAN_H
#define ENGINE_CLIENT_BACKEND_VULKAN_BACKEND_VULKAN_H
class CCommandProcessorFragment_GLBase;
static constexpr int gs_BackendVulkanMajor = 1;
static constexpr int gs_BackendVulkanMinor = 1;
CCommandProcessorFragment_GLBase *CreateVulkanCommandProcessorFragment();
#endif