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
e78ca2a1
Commit
e78ca2a1
authored
Nov 01, 2022
by
Zebediah Figura
Committed by
Alexandre Julliard
Nov 02, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winevulkan: Do not pass win32 allocation callbacks directly to the Unix side.
Fixes a regression from
000a7bbb
. Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53859
parent
00ae070c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
4 deletions
+16
-4
vulkan.c
dlls/winevulkan/vulkan.c
+16
-4
No files found.
dlls/winevulkan/vulkan.c
View file @
e78ca2a1
...
...
@@ -1662,8 +1662,11 @@ VkResult wine_vkCreateComputePipelines(VkDevice handle, VkPipelineCache pipeline
VkResult
res
;
uint32_t
i
;
if
(
allocator
)
FIXME
(
"Support for allocation callbacks not implemented yet
\n
"
);
res
=
device
->
funcs
.
p_vkCreateComputePipelines
(
device
->
device
,
pipeline_cache
,
count
,
create_infos
,
allocator
,
pipelines
);
NULL
/* allocator */
,
pipelines
);
for
(
i
=
0
;
i
<
count
;
i
++
)
fixup_pipeline_feedback_info
(
&
create_infos
[
i
]);
...
...
@@ -1679,8 +1682,11 @@ VkResult wine_vkCreateGraphicsPipelines(VkDevice handle, VkPipelineCache pipelin
VkResult
res
;
uint32_t
i
;
if
(
allocator
)
FIXME
(
"Support for allocation callbacks not implemented yet
\n
"
);
res
=
device
->
funcs
.
p_vkCreateGraphicsPipelines
(
device
->
device
,
pipeline_cache
,
count
,
create_infos
,
allocator
,
pipelines
);
NULL
/* allocator */
,
pipelines
);
for
(
i
=
0
;
i
<
count
;
i
++
)
fixup_pipeline_feedback_info
(
&
create_infos
[
i
]);
...
...
@@ -1697,8 +1703,11 @@ VkResult wine_vkCreateRayTracingPipelinesKHR(VkDevice handle, VkDeferredOperatio
VkResult
res
;
uint32_t
i
;
if
(
allocator
)
FIXME
(
"Support for allocation callbacks not implemented yet
\n
"
);
res
=
device
->
funcs
.
p_vkCreateRayTracingPipelinesKHR
(
device
->
device
,
deferred_operation
,
pipeline_cache
,
count
,
create_infos
,
allocator
,
pipelines
);
count
,
create_infos
,
NULL
/* allocator */
,
pipelines
);
for
(
i
=
0
;
i
<
count
;
i
++
)
fixup_pipeline_feedback_info
(
&
create_infos
[
i
]);
...
...
@@ -1714,8 +1723,11 @@ VkResult wine_vkCreateRayTracingPipelinesNV(VkDevice handle, VkPipelineCache pip
VkResult
res
;
uint32_t
i
;
if
(
allocator
)
FIXME
(
"Support for allocation callbacks not implemented yet
\n
"
);
res
=
device
->
funcs
.
p_vkCreateRayTracingPipelinesNV
(
device
->
device
,
pipeline_cache
,
count
,
create_infos
,
allocator
,
pipelines
);
NULL
/* allocator */
,
pipelines
);
for
(
i
=
0
;
i
<
count
;
i
++
)
fixup_pipeline_feedback_info
(
&
create_infos
[
i
]);
...
...
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