mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 20:18:19 +00:00
13 lines
353 B
C
13 lines
353 B
C
|
#ifndef ENGINE_CLIENT_BACKEND_VULKAN_BACKEND_VULKAN_H
|
||
|
#define ENGINE_CLIENT_BACKEND_VULKAN_BACKEND_VULKAN_H
|
||
|
|
||
|
#include <base/detect.h>
|
||
|
#include <engine/client/backend_sdl.h>
|
||
|
|
||
|
static constexpr int gs_BackendVulkanMajor = 1;
|
||
|
static constexpr int gs_BackendVulkanMinor = 0;
|
||
|
|
||
|
CCommandProcessorFragment_GLBase *CreateVulkanCommandProcessorFragment();
|
||
|
|
||
|
#endif
|