From 8925a2099aa056a917ff31495c5b07d3cd267311 Mon Sep 17 00:00:00 2001 From: Fabrice Date: Tue, 10 Feb 2026 14:15:22 +0100 Subject: vulkan work --- src/graphics.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/graphics.h') diff --git a/src/graphics.h b/src/graphics.h index 215fd92..373e302 100644 --- a/src/graphics.h +++ b/src/graphics.h @@ -2,6 +2,14 @@ #include +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); -- cgit v1.2.3