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
bea86f01
Commit
bea86f01
authored
Mar 19, 2019
by
Józef Kucia
Committed by
Alexandre Julliard
Mar 19, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winevulkan: Enable VK_EXT_swapchain_colorspace.
Signed-off-by:
Józef Kucia
<
jkucia@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0d20471a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
1 deletion
+17
-1
make_vulkan
dlls/winevulkan/make_vulkan
+0
-1
vulkan_thunks.c
dlls/winevulkan/vulkan_thunks.c
+1
-0
vulkan.h
include/wine/vulkan.h
+16
-0
No files found.
dlls/winevulkan/make_vulkan
View file @
bea86f01
...
...
@@ -86,7 +86,6 @@ EXT_BLOCK_SIZE = 1000
BLACKLISTED_EXTENSIONS
=
[
# Instance extensions
"VK_EXT_debug_utils"
,
"VK_EXT_swapchain_colorspace"
,
"VK_EXT_validation_features"
,
"VK_EXT_validation_flags"
,
"VK_KHR_display"
,
...
...
dlls/winevulkan/vulkan_thunks.c
View file @
bea86f01
...
...
@@ -3698,6 +3698,7 @@ static const char * const vk_device_extensions[] =
static
const
char
*
const
vk_instance_extensions
[]
=
{
"VK_EXT_swapchain_colorspace"
,
"VK_KHR_device_group_creation"
,
"VK_KHR_get_physical_device_properties2"
,
"VK_KHR_surface"
,
...
...
include/wine/vulkan.h
View file @
bea86f01
...
...
@@ -172,6 +172,8 @@
#define VK_EXT_CONSERVATIVE_RASTERIZATION_EXTENSION_NAME "VK_EXT_conservative_rasterization"
#define VK_EXT_DEPTH_CLIP_ENABLE_SPEC_VERSION 1
#define VK_EXT_DEPTH_CLIP_ENABLE_EXTENSION_NAME "VK_EXT_depth_clip_enable"
#define VK_EXT_SWAPCHAIN_COLOR_SPACE_SPEC_VERSION 3
#define VK_EXT_SWAPCHAIN_COLOR_SPACE_EXTENSION_NAME "VK_EXT_swapchain_colorspace"
#define VK_KHR_CREATE_RENDERPASS_2_SPEC_VERSION 1
#define VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME "VK_KHR_create_renderpass2"
#define VK_KHR_MAINTENANCE2_SPEC_VERSION 1
...
...
@@ -698,6 +700,20 @@ typedef enum VkColorSpaceKHR
{
VK_COLOR_SPACE_SRGB_NONLINEAR_KHR
=
0
,
VK_COLORSPACE_SRGB_NONLINEAR_KHR
=
0
,
VK_COLOR_SPACE_DISPLAY_P3_NONLINEAR_EXT
=
1000104001
,
VK_COLOR_SPACE_EXTENDED_SRGB_LINEAR_EXT
=
1000104002
,
VK_COLOR_SPACE_DCI_P3_LINEAR_EXT
=
1000104003
,
VK_COLOR_SPACE_DCI_P3_NONLINEAR_EXT
=
1000104004
,
VK_COLOR_SPACE_BT709_LINEAR_EXT
=
1000104005
,
VK_COLOR_SPACE_BT709_NONLINEAR_EXT
=
1000104006
,
VK_COLOR_SPACE_BT2020_LINEAR_EXT
=
1000104007
,
VK_COLOR_SPACE_HDR10_ST2084_EXT
=
1000104008
,
VK_COLOR_SPACE_DOLBYVISION_EXT
=
1000104009
,
VK_COLOR_SPACE_HDR10_HLG_EXT
=
1000104010
,
VK_COLOR_SPACE_ADOBERGB_LINEAR_EXT
=
1000104011
,
VK_COLOR_SPACE_ADOBERGB_NONLINEAR_EXT
=
1000104012
,
VK_COLOR_SPACE_PASS_THROUGH_EXT
=
1000104013
,
VK_COLOR_SPACE_EXTENDED_SRGB_NONLINEAR_EXT
=
1000104014
,
VK_COLOR_SPACE_KHR_MAX_ENUM
=
0x7fffffff
,
}
VkColorSpaceKHR
;
...
...
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