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
53916000
Commit
53916000
authored
Jan 25, 2021
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 25, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Trace the available Vulkan extensions.
Like we do for OpenGL. Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8f0349f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
adapter_vk.c
dlls/wined3d/adapter_vk.c
+12
-0
No files found.
dlls/wined3d/adapter_vk.c
View file @
53916000
...
...
@@ -1853,6 +1853,12 @@ static BOOL enable_vulkan_instance_extensions(uint32_t *extension_count,
goto
done
;
}
TRACE
(
"Vulkan instance extensions reported:
\n
"
);
for
(
i
=
0
;
i
<
count
;
++
i
)
{
TRACE
(
" - %s.
\n
"
,
debugstr_a
(
extensions
[
i
].
extensionName
));
}
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
vulkan_instance_extensions
);
++
i
)
{
if
(
vulkan_instance_extensions
[
i
].
core_since_version
<=
vk_info
->
api_version
)
...
...
@@ -2207,6 +2213,12 @@ static bool wined3d_adapter_vk_init_device_extensions(struct wined3d_adapter_vk
goto
done
;
}
TRACE
(
"Vulkan device extensions reported:
\n
"
);
for
(
i
=
0
;
i
<
count
;
++
i
)
{
TRACE
(
" - %s.
\n
"
,
debugstr_a
(
extensions
[
i
].
extensionName
));
}
for
(
i
=
0
,
enable_count
=
0
;
i
<
ARRAY_SIZE
(
info
);
++
i
)
{
if
(
info
[
i
].
core_since_version
<=
vk_info
->
api_version
)
...
...
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