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
ac84b8f0
Commit
ac84b8f0
authored
Nov 24, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Nov 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winevulkan: Drop the WINEVULKAN_QUIRK_IGNORE_EXPLICIT_LAYERS quirk.
It's not set anywhere.
parent
bfb5064f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
vulkan.c
dlls/winevulkan/vulkan.c
+2
-5
vulkan_loader.h
dlls/winevulkan/vulkan_loader.h
+0
-1
No files found.
dlls/winevulkan/vulkan.c
View file @
ac84b8f0
...
...
@@ -526,11 +526,8 @@ static VkResult wine_vk_instance_convert_create_info(struct conversion_context *
/* ICDs don't support any layers, so nothing to copy. Modern versions of the loader
* filter this data out as well.
*/
if
(
object
->
quirks
&
WINEVULKAN_QUIRK_IGNORE_EXPLICIT_LAYERS
)
{
dst
->
enabledLayerCount
=
0
;
dst
->
ppEnabledLayerNames
=
NULL
;
WARN
(
"Ignoring explicit layers!
\n
"
);
}
else
if
(
dst
->
enabledLayerCount
)
{
if
(
dst
->
enabledLayerCount
)
{
FIXME
(
"Loading explicit layers is not supported by winevulkan!
\n
"
);
return
VK_ERROR_LAYER_NOT_PRESENT
;
}
...
...
dlls/winevulkan/vulkan_loader.h
View file @
ac84b8f0
...
...
@@ -40,7 +40,6 @@
#define WINEVULKAN_QUIRK_GET_DEVICE_PROC_ADDR 0x00000001
#define WINEVULKAN_QUIRK_ADJUST_MAX_IMAGE_COUNT 0x00000002
#define WINEVULKAN_QUIRK_IGNORE_EXPLICIT_LAYERS 0x00000004
/* Base 'class' for our Vulkan dispatchable objects such as VkDevice and VkInstance.
* This structure MUST be the first element of a dispatchable object as the ICD
...
...
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