summaryrefslogtreecommitdiff
path: root/src/renderer/backends/backend_vulkan.c
blob: bf2234db969be921a48956594cb64a80428119a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#define CEL_PLATFORM_LINUX

#include "defines.h"
#include "file.h"
#include "log.h"
#include "maths_types.h"
#include "render_types.h"

#include <stdlib.h>

#if CEL_REND_BACKEND_VULKAN

#include <glad/glad.h>

#include <glfw3.h>

typedef struct vulkan_context vulkan_context;
static vulkan_context context;

/** @brief Internal backend state */
typedef struct vulkan_state {
} vulkan_state;