implemented Vulkan surface creation

This commit is contained in:
Lorenzo Torres 2025-11-05 22:04:39 +01:00
parent fa2a4887df
commit b6b0c5091b
13 changed files with 128 additions and 18 deletions

9
rendering/vk/surface.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef SURFACE_H
#define SURFACE_H
#include "vk.h"
void vk_surface_init(struct renderer_context *context);
void vk_surface_deinit(struct renderer_context *context);
#endif