summaryrefslogtreecommitdiff
path: root/render/vulkan/context.h
blob: e67122302252787be093f37a25bb3a957bd8314b (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef VKCONTEXT_H
#define VKCONTEXT_H

#include "vk_types.h"

struct vkcontext* create_vkcontext(struct vklayer_container *vklayers, struct ext_container *ext);
void destroy_vkcontext(struct vkcontext *context);

struct vklayer_container* init_vklayers(struct ext_container *ext);

#endif