Skip to content
Snippets Groups Projects

system-info: Don't confuse graphics issues with library issues

Merged Simon McVittie requested to merge wip/smcv/mixed-up-issues into master
1 file
+ 6
6
Compare changes
  • Side-by-side
  • Inline
@@ -1804,42 +1804,42 @@ GList * srt_system_info_check_all_graphics (SrtSystemInfo *self,
// Try each rendering interface
// Try each window system
abi->cached_combined_issues |=
abi->cached_combined_graphics_issues |=
srt_system_info_check_graphics (self,
multiarch_tuple,
SRT_WINDOW_SYSTEM_GLX,
SRT_RENDERING_INTERFACE_GL,
NULL);
abi->cached_combined_issues |=
abi->cached_combined_graphics_issues |=
srt_system_info_check_graphics (self,
multiarch_tuple,
SRT_WINDOW_SYSTEM_EGL_X11,
SRT_RENDERING_INTERFACE_GL,
NULL);
abi->cached_combined_issues |=
abi->cached_combined_graphics_issues |=
srt_system_info_check_graphics (self,
multiarch_tuple,
SRT_WINDOW_SYSTEM_EGL_X11,
SRT_RENDERING_INTERFACE_GLESV2,
NULL);
abi->cached_combined_issues |=
abi->cached_combined_graphics_issues |=
srt_system_info_check_graphics (self,
multiarch_tuple,
SRT_WINDOW_SYSTEM_X11,
SRT_RENDERING_INTERFACE_VULKAN,
NULL);
abi->cached_combined_issues |=
abi->cached_combined_graphics_issues |=
srt_system_info_check_graphics (self,
multiarch_tuple,
SRT_WINDOW_SYSTEM_X11,
SRT_RENDERING_INTERFACE_VDPAU,
NULL);
abi->cached_combined_issues |=
abi->cached_combined_graphics_issues |=
srt_system_info_check_graphics (self,
multiarch_tuple,
SRT_WINDOW_SYSTEM_X11,
Loading