basic rendering for both opengl and vulkan

This commit is contained in:
Lorenzo Torres 2026-01-07 02:43:00 +01:00
parent 4b18afa040
commit dadd2edaf1
29 changed files with 1140 additions and 38 deletions

10
rendering/vk/pipeline.h Normal file
View file

@ -0,0 +1,10 @@
/* SPDX-License-Identifier:BSD-3-Clause */
#ifndef PIPELINE_H
#define PIPELINE_H
#include "vk.h"
void vk_pipeline_init(struct renderer_context *context);
void vk_pipeline_deinit(struct renderer_context *context);
#endif