added vulkan device and queues creation

This commit is contained in:
Lorenzo Torres 2025-11-03 13:08:46 +01:00
parent 89edee7249
commit 6c31a3ce27
20 changed files with 253 additions and 18 deletions

View file

@ -1,8 +1,10 @@
// SPDX-License-Identifier: BSD-3-Clause
#ifndef INSTANCE_H
#define INSTANCE_H
#include "../rendering/renderer.h"
void vk_instance_init(struct renderer_context *context);
void vk_instance_deinit(struct renderer_context *context);
#endif