mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 03:58:18 +00:00
365c48413f
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
12 lines
329 B
C++
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
|