Add video_info->fullscreen

This commit is contained in:
twinaphex 2017-01-17 23:54:13 +01:00
parent 76a2499547
commit dbed4d4fc6
2 changed files with 2 additions and 0 deletions

View File

@ -2192,6 +2192,7 @@ void video_driver_build_info(video_frame_info_t *video_info)
video_info->post_filter_record = settings->video.post_filter_record;
video_info->max_swapchain_images = settings->video.max_swapchain_images;
video_info->windowed_fullscreen = settings->video.windowed_fullscreen;
video_info->fullscreen = settings->video.fullscreen;
video_info->monitor_index = settings->video.monitor_index;
video_info->shared_context = settings->video.shared_context;
video_info->font_enable = settings->video.font_enable;

View File

@ -98,6 +98,7 @@ typedef struct video_frame_info
bool post_filter_record;
unsigned max_swapchain_images;
bool windowed_fullscreen;
bool fullscreen;
unsigned monitor_index;
bool font_enable;
} video_frame_info_t;