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
ecc54b84
Commit
ecc54b84
authored
Dec 04, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Dec 04, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winevulkan: Remove unnecessary dispatch from make_vulkan.
parent
60cb635e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
make_vulkan
dlls/winevulkan/make_vulkan
+5
-5
No files found.
dlls/winevulkan/make_vulkan
View file @
ecc54b84
...
...
@@ -180,11 +180,11 @@ class ThunkType(Enum):
# - loader_thunk (default: ThunkType.PUBLIC): sets whether to create a thunk for unix funcs.
FUNCTION_OVERRIDES
=
{
# Global functions
"vkCreateInstance"
:
{
"d
ispatch"
:
False
,
"d
river"
:
True
,
"thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
PRIVATE
,
"extra_param"
:
"client_ptr"
},
"vkEnumerateInstanceExtensionProperties"
:
{
"d
ispatch"
:
False
,
"d
river"
:
True
,
"thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
PRIVATE
},
"vkEnumerateInstanceLayerProperties"
:
{
"
dispatch"
:
False
,
"
thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
NONE
},
"vkEnumerateInstanceVersion"
:
{
"
dispatch"
:
False
,
"
thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
PRIVATE
},
"vkGetInstanceProcAddr"
:
{
"d
ispatch"
:
False
,
"d
river"
:
True
,
"thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
NONE
},
"vkCreateInstance"
:
{
"driver"
:
True
,
"thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
PRIVATE
,
"extra_param"
:
"client_ptr"
},
"vkEnumerateInstanceExtensionProperties"
:
{
"driver"
:
True
,
"thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
PRIVATE
},
"vkEnumerateInstanceLayerProperties"
:
{
"thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
NONE
},
"vkEnumerateInstanceVersion"
:
{
"thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
PRIVATE
},
"vkGetInstanceProcAddr"
:
{
"driver"
:
True
,
"thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
NONE
},
# Instance functions
"vkCreateDevice"
:
{
"thunk"
:
ThunkType
.
NONE
,
"loader_thunk"
:
ThunkType
.
PRIVATE
,
"extra_param"
:
"client_ptr"
},
...
...
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