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
a77416c4
Commit
a77416c4
authored
Jul 17, 2018
by
Józef Kucia
Committed by
Alexandre Julliard
Jul 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winevulkan: Avoid FIXMEs for unsupported Vulkan functions.
Signed-off-by:
Józef Kucia
<
jkucia@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
898f4b6c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
vulkan.c
dlls/winevulkan/vulkan.c
+5
-5
No files found.
dlls/winevulkan/vulkan.c
View file @
a77416c4
...
...
@@ -935,7 +935,7 @@ PFN_vkVoidFunction WINAPI wine_vkGetDeviceProcAddr(VkDevice device, const char *
return
func
;
}
TRACE
(
"Function %s not found
.
\n
"
,
debugstr_a
(
name
));
WARN
(
"Unsupported device function: %s
.
\n
"
,
debugstr_a
(
name
));
return
NULL
;
}
...
...
@@ -970,7 +970,7 @@ PFN_vkVoidFunction WINAPI wine_vkGetInstanceProcAddr(VkInstance instance, const
{
void
*
func
;
TRACE
(
"%p %s
\n
"
,
instance
,
debugstr_a
(
name
));
TRACE
(
"%p
,
%s
\n
"
,
instance
,
debugstr_a
(
name
));
if
(
!
name
)
return
NULL
;
...
...
@@ -985,7 +985,7 @@ PFN_vkVoidFunction WINAPI wine_vkGetInstanceProcAddr(VkInstance instance, const
}
if
(
!
instance
)
{
FIXME
(
"Global function %s not found.
\n
"
,
debugstr_a
(
name
));
WARN
(
"Global function %s not found.
\n
"
,
debugstr_a
(
name
));
return
NULL
;
}
...
...
@@ -996,13 +996,13 @@ PFN_vkVoidFunction WINAPI wine_vkGetInstanceProcAddr(VkInstance instance, const
func
=
wine_vk_get_device_proc_addr
(
name
);
if
(
func
)
return
func
;
FIXME
(
"Unsupported device or instance function: %s.
\n
"
,
debugstr_a
(
name
));
WARN
(
"Unsupported device or instance function: %s.
\n
"
,
debugstr_a
(
name
));
return
NULL
;
}
void
*
WINAPI
wine_vk_icdGetInstanceProcAddr
(
VkInstance
instance
,
const
char
*
name
)
{
TRACE
(
"%p %s
\n
"
,
instance
,
debugstr_a
(
name
));
TRACE
(
"%p
,
%s
\n
"
,
instance
,
debugstr_a
(
name
));
/* Initial version of the Vulkan ICD spec required vkGetInstanceProcAddr to be
* exported. vk_icdGetInstanceProcAddr was added later to separate ICD calls from
...
...
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