10 lines
227 B
C
10 lines
227 B
C
/* SPDX-License-Identifier:BSD-3-Clause */
|
|
#ifndef SWAPCHAIN_H
|
|
#define SWAPCHAIN_H
|
|
|
|
#include "vk.h"
|
|
|
|
void vk_swapchain_init(struct renderer_context *context);
|
|
void vk_swapchain_deinit(struct renderer_context *context);
|
|
|
|
#endif
|