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
45bfd4e1
Commit
45bfd4e1
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: Fix video flickering.
parent
ee633870
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
videorenderer.c
dlls/quartz/tests/videorenderer.c
+1
-1
window.c
dlls/quartz/window.c
+0
-1
No files found.
dlls/quartz/tests/videorenderer.c
View file @
45bfd4e1
...
...
@@ -2368,7 +2368,7 @@ static void test_video_window(void)
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
);
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
);
...
...
dlls/quartz/window.c
View file @
45bfd4e1
...
...
@@ -101,7 +101,6 @@ HRESULT video_window_create_window(struct video_window *window)
winclass
.
lpfnWndProc
=
WndProcW
;
winclass
.
cbWndExtra
=
sizeof
(
window
);
winclass
.
hbrBackground
=
GetStockObject
(
BLACK_BRUSH
);
winclass
.
lpszClassName
=
class_name
;
if
(
!
RegisterClassW
(
&
winclass
)
&&
GetLastError
()
!=
ERROR_CLASS_ALREADY_EXISTS
)
{
...
...
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