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
6d475f15
Commit
6d475f15
authored
Mar 16, 2018
by
Józef Kucia
Committed by
Alexandre Julliard
Mar 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winevulkan: Fix vkEnumerateInstanceExtensionProperties().
Signed-off-by:
Józef Kucia
<
jkucia@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f0182f85
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
vulkan.c
dlls/winevulkan/vulkan.c
+3
-8
No files found.
dlls/winevulkan/vulkan.c
View file @
6d475f15
...
...
@@ -823,19 +823,14 @@ static VkResult WINAPI wine_vkEnumerateInstanceExtensionProperties(const char *l
if
(
wine_vk_instance_extension_supported
(
host_properties
[
i
].
extensionName
))
{
TRACE
(
"Enabling extension '%s'
\n
"
,
host_properties
[
i
].
extensionName
);
memcpy
(
&
properties
[
j
],
&
host_properties
[
i
],
sizeof
(
*
properties
))
;
properties
[
j
]
=
host_properties
[
i
]
;
j
++
;
}
}
/* Return incomplete if the buffer is smaller than the number of supported extensions. */
if
(
*
count
<
num_properties
)
res
=
VK_INCOMPLETE
;
else
res
=
VK_SUCCESS
;
*
count
=
min
(
*
count
,
num_properties
);
heap_free
(
host_properties
);
return
res
;
return
*
count
<
num_properties
?
VK_INCOMPLETE
:
VK_SUCCESS
;
}
VkResult
WINAPI
wine_vkEnumeratePhysicalDevices
(
VkInstance
instance
,
uint32_t
*
count
,
...
...
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