Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0a4af87e
Commit
0a4af87e
authored
Mar 15, 2022
by
Georg Lehmann
Committed by
Alexandre Julliard
Mar 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winevulkan: Update to VK spec version 1.3.208.
Signed-off-by:
Georg Lehmann
<
dadschoorse@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c0910657
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
3 deletions
+12
-3
make_vulkan
dlls/winevulkan/make_vulkan
+1
-1
vulkan_thunks.c
dlls/winevulkan/vulkan_thunks.c
+1
-0
winevulkan.json
dlls/winevulkan/winevulkan.json
+1
-1
vulkan.h
include/wine/vulkan.h
+9
-1
No files found.
dlls/winevulkan/make_vulkan
View file @
0a4af87e
...
...
@@ -64,7 +64,7 @@ from enum import Enum
LOGGER
=
logging
.
Logger
(
"vulkan"
)
LOGGER
.
addHandler
(
logging
.
StreamHandler
())
VK_XML_VERSION
=
"1.3.20
7
"
VK_XML_VERSION
=
"1.3.20
8
"
WINE_VK_VERSION
=
(
1
,
3
)
# Filenames to create.
...
...
dlls/winevulkan/vulkan_thunks.c
View file @
0a4af87e
...
...
@@ -9820,6 +9820,7 @@ static const char * const vk_instance_extensions[] =
"VK_KHR_external_semaphore_capabilities"
,
"VK_KHR_get_physical_device_properties2"
,
"VK_KHR_get_surface_capabilities2"
,
"VK_KHR_portability_enumeration"
,
"VK_KHR_surface"
,
"VK_KHR_win32_surface"
,
};
...
...
dlls/winevulkan/winevulkan.json
View file @
0a4af87e
...
...
@@ -2,6 +2,6 @@
"file_format_version"
:
"1.0.0"
,
"ICD"
:
{
"library_path"
:
".
\\
winevulkan.dll"
,
"api_version"
:
"1.3.20
7
"
"api_version"
:
"1.3.20
8
"
}
}
include/wine/vulkan.h
View file @
0a4af87e
...
...
@@ -483,6 +483,8 @@
#define VK_EXT_IMAGE_VIEW_MIN_LOD_EXTENSION_NAME "VK_EXT_image_view_min_lod"
#define VK_EXT_MULTI_DRAW_SPEC_VERSION 1
#define VK_EXT_MULTI_DRAW_EXTENSION_NAME "VK_EXT_multi_draw"
#define VK_KHR_PORTABILITY_ENUMERATION_SPEC_VERSION 1
#define VK_KHR_PORTABILITY_ENUMERATION_EXTENSION_NAME "VK_KHR_portability_enumeration"
#define VK_EXT_LOAD_STORE_OP_NONE_SPEC_VERSION 1
#define VK_EXT_LOAD_STORE_OP_NONE_EXTENSION_NAME "VK_EXT_load_store_op_none"
#define VK_EXT_BORDER_COLOR_SWIZZLE_SPEC_VERSION 1
...
...
@@ -519,7 +521,7 @@
#define VK_API_VERSION_1_1 VK_MAKE_API_VERSION(0, 1, 1, 0)
#define VK_API_VERSION_1_2 VK_MAKE_API_VERSION(0, 1, 2, 0)
#define VK_API_VERSION_1_3 VK_MAKE_API_VERSION(0, 1, 3, 0)
#define VK_HEADER_VERSION 20
7
#define VK_HEADER_VERSION 20
8
#define VK_HEADER_VERSION_COMPLETE VK_MAKE_API_VERSION(0, 1, 3, VK_HEADER_VERSION)
#define VK_DEFINE_HANDLE(object) typedef struct object##_T* object;
#define VK_USE_64_BIT_PTR_DEFINES 0
...
...
@@ -2371,6 +2373,12 @@ typedef enum VkIndirectStateFlagBitsNV
VK_INDIRECT_STATE_FLAG_BITS_NV_MAX_ENUM
=
0x7fffffff
,
}
VkIndirectStateFlagBitsNV
;
typedef
enum
VkInstanceCreateFlagBits
{
VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR
=
0x00000001
,
VK_INSTANCE_CREATE_FLAG_BITS_MAX_ENUM
=
0x7fffffff
,
}
VkInstanceCreateFlagBits
;
typedef
enum
VkInternalAllocationType
{
VK_INTERNAL_ALLOCATION_TYPE_EXECUTABLE
=
0
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment