10 lines
231 B
C
10 lines
231 B
C
/* SPDX-License-Identifier:BSD-3-Clause */
|
|
#ifndef RENDERPASS_H
|
|
#define RENDERPASS_H
|
|
|
|
#include "vk.h"
|
|
|
|
void vk_renderpass_init(struct renderer_context *context);
|
|
void vk_renderpass_deinit(struct renderer_context *context);
|
|
|
|
#endif
|