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
ee633870
Commit
ee633870
authored
Oct 16, 2022
by
Akihiro Sagawa
Committed by
Alexandre Julliard
Oct 17, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Add a background brush test for video renderer.
parent
556b3981
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
videorenderer.c
dlls/quartz/tests/videorenderer.c
+4
-0
No files found.
dlls/quartz/tests/videorenderer.c
View file @
ee633870
...
...
@@ -2329,6 +2329,7 @@ static void test_video_window(void)
WNDCLASSA
window_class
=
{
0
};
struct
testfilter
source
;
LONG
width
,
height
,
l
;
ULONG_PTR
background
;
IVideoWindow
*
window
;
IBaseFilter
*
filter
;
HWND
hwnd
,
our_hwnd
;
...
...
@@ -2366,6 +2367,9 @@ static void test_video_window(void)
tid
=
GetWindowThreadProcessId
(
hwnd
,
NULL
);
ok
(
tid
==
GetCurrentThreadId
(),
"Expected tid %#lx, got %#lx.
\n
"
,
GetCurrentThreadId
(),
tid
);
background
=
GetClassLongPtrW
(
hwnd
,
GCLP_HBRBACKGROUND
);
todo_wine
ok
(
!
background
,
"Expected NULL brush, got %#Ix
\n
"
,
background
);
hr
=
IBaseFilter_QueryInterface
(
filter
,
&
IID_IVideoWindow
,
(
void
**
)
&
window
);
ok
(
hr
==
S_OK
,
"Got hr %#lx.
\n
"
,
hr
);
...
...
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