parent
9504bb121d
commit
13ec545936
|
@ -22901,6 +22901,11 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|||
$as_echo "$as_me: WARNING: Vulkan does not work on this configuration." >&2;}
|
||||
fi
|
||||
fi
|
||||
if test x$have_loadso != xyes; then
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Vulkan support is available, but disabled because there's no loadso." >&5
|
||||
$as_echo "$as_me: WARNING: Vulkan support is available, but disabled because there's no loadso." >&2;}
|
||||
enable_video_vulkan=no
|
||||
fi
|
||||
if test x$enable_video_vulkan = xyes; then
|
||||
|
||||
$as_echo "#define SDL_VIDEO_VULKAN 1" >>confdefs.h
|
||||
|
|
|
@ -2598,6 +2598,10 @@ CheckVulkan()
|
|||
AC_MSG_WARN([Vulkan does not work on this configuration.])
|
||||
fi
|
||||
fi
|
||||
if test x$have_loadso != xyes; then
|
||||
AC_MSG_WARN([Vulkan support is available, but disabled because there's no loadso.])
|
||||
enable_video_vulkan=no
|
||||
fi
|
||||
if test x$enable_video_vulkan = xyes; then
|
||||
AC_DEFINE(SDL_VIDEO_VULKAN, 1, [ ])
|
||||
SUMMARY_video="${SUMMARY_video} vulkan"
|
||||
|
|
Loading…
Reference in New Issue