Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
2fec470a
Commit
2fec470a
authored
Mar 08, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vulkan-1/tests: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
659f6fe3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
dlls/vulkan-1/tests/Makefile.in
+0
-1
vulkan.c
dlls/vulkan-1/tests/vulkan.c
+2
-2
No files found.
dlls/vulkan-1/tests/Makefile.in
View file @
2fec470a
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
TESTDLL
=
vulkan-1.dll
IMPORTS
=
vulkan-1
...
...
dlls/vulkan-1/tests/vulkan.c
View file @
2fec470a
...
...
@@ -209,7 +209,7 @@ static void test_enumerate_physical_device2(void)
pfn_vkGetPhysicalDeviceProperties2
(
vk_physical_devices
[
j
],
&
properties2
);
luid
=
(
const
LUID
*
)
id
.
deviceLUID
;
trace
(
"Device '%s', device UUID: %s, driver UUID: %s, device LUID: %08
x:%08
x.
\n
"
,
trace
(
"Device '%s', device UUID: %s, driver UUID: %s, device LUID: %08
lx:%08l
x.
\n
"
,
properties2
.
properties
.
deviceName
,
wine_dbgstr_guid
((
const
GUID
*
)
id
.
deviceUUID
),
wine_dbgstr_guid
((
const
GUID
*
)
id
.
driverUUID
),
luid
->
HighPart
,
luid
->
LowPart
);
ok
(
id
.
deviceLUIDValid
==
VK_TRUE
,
"Expected valid device LUID.
\n
"
);
...
...
@@ -584,7 +584,7 @@ static void test_cross_process_resource(VkPhysicalDeviceIDPropertiesKHR *device_
sprintf
(
buf
,
"
\"
%s
\"
vulkan resource %s %s %s %p"
,
argv
[
0
],
driver_uuid
,
device_uuid
,
kmt
?
"kmt"
:
"nt"
,
handle
);
res
=
CreateProcessA
(
NULL
,
buf
,
NULL
,
NULL
,
TRUE
,
0L
,
NULL
,
NULL
,
&
si
,
&
info
);
ok
(
res
,
"CreateProcess failed: %u
\n
"
,
GetLastError
());
ok
(
res
,
"CreateProcess failed: %
l
u
\n
"
,
GetLastError
());
CloseHandle
(
info
.
hThread
);
wait_child_process
(
info
.
hProcess
);
...
...
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