12 lines
239 B
C
12 lines
239 B
C
/* SPDX-License-Identifier:BSD-3-Clause */
|
|
#ifndef SYNC_H
|
|
#define SYNC_H
|
|
|
|
#include "vk.h"
|
|
|
|
#define MAX_FRAMES_IN_FLIGHT 2
|
|
|
|
void vk_sync_init(struct renderer_context *context);
|
|
void vk_sync_deinit(struct renderer_context *context);
|
|
|
|
#endif
|