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
7d3beb6b
Commit
7d3beb6b
authored
Jun 29, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Jun 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d: Add a test for releasing the device after destroying the window.
parent
f57967c9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
visual.c
dlls/d3d8/tests/visual.c
+1
-1
visual.c
dlls/d3d9/tests/visual.c
+3
-3
No files found.
dlls/d3d8/tests/visual.c
View file @
7d3beb6b
...
...
@@ -1348,8 +1348,8 @@ cleanup:
ULONG
refcount
;
IDirect3DDevice8_GetCreationParameters
(
device_ptr
,
&
creation_parameters
);
DestroyWindow
(
creation_parameters
.
hFocusWindow
);
refcount
=
IDirect3DDevice8_Release
(
device_ptr
);
ok
(
!
refcount
,
"Device has %u references left
\n
"
,
refcount
);
DestroyWindow
(
creation_parameters
.
hFocusWindow
);
}
}
dlls/d3d9/tests/visual.c
View file @
7d3beb6b
...
...
@@ -10498,15 +10498,15 @@ START_TEST(visual)
cleanup
:
if
(
device_ptr
)
{
ULONG
ref
;
D3DPRESENT_PARAMETERS
present_parameters
;
IDirect3DSwapChain9
*
swapchain
;
ULONG
ref
;
IDirect3DDevice9_GetSwapChain
(
device_ptr
,
0
,
&
swapchain
);
IDirect3DSwapChain9_GetPresentParameters
(
swapchain
,
&
present_parameters
);
DestroyWindow
(
present_parameters
.
hDeviceWindow
);
IDirect3DSwapChain9_Release
(
swapchain
);
ref
=
IDirect3DDevice9_Release
(
device_ptr
);
DestroyWindow
(
present_parameters
.
hDeviceWindow
);
ok
(
ref
==
0
,
"The device was not properly freed: refcount %u
\n
"
,
ref
);
}
}
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