blob: 383fc4fd0b8e0be6cf91f8a4c402d64e95a035ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef GSR_ENCODER_VIDEO_VULKAN_H
#define GSR_ENCODER_VIDEO_VULKAN_H
#include "video.h"
typedef struct gsr_egl gsr_egl;
typedef struct {
gsr_egl *egl;
gsr_color_depth color_depth;
} gsr_video_encoder_vulkan_params;
gsr_video_encoder* gsr_video_encoder_vulkan_create(const gsr_video_encoder_vulkan_params *params);
#endif /* GSR_ENCODER_VIDEO_VULKAN_H */
|