Module: wine Branch: master Commit: 107e7c78fc239f90130887e1b58678d9c38ff6f4 URL: https://source.winehq.org/git/wine.git/?a=commit;h=107e7c78fc239f90130887e1b... Author: Józef Kucia <jkucia(a)codeweavers.com> Date: Wed Mar 21 10:03:43 2018 +0100 winex11: Print ERR() message when Wine was built without Vulkan support. Signed-off-by: Józef Kucia <jkucia(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/winex11.drv/vulkan.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/winex11.drv/vulkan.c b/dlls/winex11.drv/vulkan.c index 0586096..27ff722 100644 --- a/dlls/winex11.drv/vulkan.c +++ b/dlls/winex11.drv/vulkan.c @@ -533,6 +533,7 @@ const struct vulkan_funcs *get_vulkan_driver(UINT version) const struct vulkan_funcs *get_vulkan_driver(UINT version) { + ERR("Wine was built without Vulkan support.\n"); return NULL; }