Merge pull request #7121 from orbea/video_driver

Default to gl instead of vulkan.
This commit is contained in:
Twinaphex 2018-08-25 00:22:18 +02:00 committed by GitHub
commit 07509a8ec8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -262,12 +262,12 @@ struct aspect_ratio_elem aspectratio_lut[ASPECT_RATIO_END] = {
};
static const video_driver_t *video_drivers[] = {
#ifdef HAVE_VULKAN
&video_vulkan,
#endif
#ifdef HAVE_OPENGL
&video_gl,
#endif
#ifdef HAVE_VULKAN
&video_vulkan,
#endif
#ifdef HAVE_METAL
&video_metal,
#endif