mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-01-28 22:04:43 -08:00
Added patch to implement initial support for Vulkan on i386/x86_64.
This commit is contained in:
parent
44b64cc18e
commit
448a3fafa4
@ -338,6 +338,7 @@ patch_enable_all ()
|
||||
enable_version_GetFileVersionInfoSizeExW="$1"
|
||||
enable_version_VerFindFileA="$1"
|
||||
enable_version_VerQueryValue="$1"
|
||||
enable_vulkan_Vulkan_Implementation="$1"
|
||||
enable_wbemdisp_ISWbemSecurity="$1"
|
||||
enable_widl_SLTG_Typelib_Support="$1"
|
||||
enable_windowscodecs_32bppGrayFloat="$1"
|
||||
@ -1182,6 +1183,9 @@ patch_enable ()
|
||||
version-VerQueryValue)
|
||||
enable_version_VerQueryValue="$2"
|
||||
;;
|
||||
vulkan-Vulkan_Implementation)
|
||||
enable_vulkan_Vulkan_Implementation="$2"
|
||||
;;
|
||||
wbemdisp-ISWbemSecurity)
|
||||
enable_wbemdisp_ISWbemSecurity="$2"
|
||||
;;
|
||||
@ -6833,6 +6837,22 @@ if test "$enable_version_VerQueryValue" -eq 1; then
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset vulkan-Vulkan_Implementation
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
# | * [#40164] Implement support for Vulkan
|
||||
# |
|
||||
# | Modified files:
|
||||
# | * configure.ac, dlls/vulkan-1/Makefile.in, dlls/vulkan-1/vulkan-1.spec, dlls/vulkan/Makefile.in, dlls/vulkan/vulkan.spec,
|
||||
# | dlls/vulkan/vulkan_main.c, dlls/vulkan/vulkan_private.h, dlls/vulkan/vulkan_thunks.c
|
||||
# |
|
||||
if test "$enable_vulkan_Vulkan_Implementation" -eq 1; then
|
||||
patch_apply vulkan-Vulkan_Implementation/0001-vulkan-Initial-implementation.patch
|
||||
(
|
||||
echo '+ { "Sebastian Lackner", "vulkan: Initial implementation.", 1 },';
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset wbemdisp-ISWbemSecurity
|
||||
# |
|
||||
# | Modified files:
|
||||
|
File diff suppressed because it is too large
Load Diff
1
patches/vulkan-Vulkan_Implementation/definition
Normal file
1
patches/vulkan-Vulkan_Implementation/definition
Normal file
@ -0,0 +1 @@
|
||||
Fixes: [40164] Implement support for Vulkan
|
Loading…
x
Reference in New Issue
Block a user