10 lines
223 B
C
10 lines
223 B
C
/* 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
|