summaryrefslogtreecommitdiff
path: root/src/graphics.h
blob: 373e30251e4db7fad104ea716e911f583997c6ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <vulkan/vulkan.h>

enum graphics_error_e {
  GRAPHICS_ERROR_NONE = 0,
  GRAPHICS_ERROR_INSTANCE,
};

struct graphics_s {
  VkInstance instance;
};

enum graphics_error_e wayc_graphics_init(struct graphics_s* graphics);
void wayc_graphics_deinit(struct graphics_s* graphics);