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
266e79d0
Commit
266e79d0
authored
Oct 09, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Oct 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Use target rect if set otherwise default to source rect in VideoRenderer_AutoShowWindow.
parent
a89f877f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
12 deletions
+27
-12
videorenderer.c
dlls/quartz/videorenderer.c
+27
-12
No files found.
dlls/quartz/videorenderer.c
View file @
266e79d0
...
...
@@ -150,7 +150,8 @@ static BOOL CreateRenderingSubsystem(VideoRendererImpl* This)
return
TRUE
;
}
static
void
VideoRenderer_AutoShowWindow
(
VideoRendererImpl
*
This
)
{
static
void
VideoRenderer_AutoShowWindow
(
VideoRendererImpl
*
This
)
{
if
(
!
This
->
init
&&
(
!
This
->
WindowPos
.
right
||
!
This
->
WindowPos
.
top
))
{
DWORD
style
=
GetWindowLongW
(
This
->
baseControlWindow
.
baseWindow
.
hWnd
,
GWL_STYLE
);
...
...
@@ -158,13 +159,29 @@ static void VideoRenderer_AutoShowWindow(VideoRendererImpl *This) {
if
(
!
This
->
WindowPos
.
right
)
{
This
->
WindowPos
.
left
=
This
->
SourceRect
.
left
;
This
->
WindowPos
.
right
=
This
->
SourceRect
.
right
;
if
(
This
->
DestRect
.
right
)
{
This
->
WindowPos
.
left
=
This
->
DestRect
.
left
;
This
->
WindowPos
.
right
=
This
->
DestRect
.
right
;
}
else
{
This
->
WindowPos
.
left
=
This
->
SourceRect
.
left
;
This
->
WindowPos
.
right
=
This
->
SourceRect
.
right
;
}
}
if
(
!
This
->
WindowPos
.
bottom
)
{
This
->
WindowPos
.
top
=
This
->
SourceRect
.
top
;
This
->
WindowPos
.
bottom
=
This
->
SourceRect
.
bottom
;
if
(
This
->
DestRect
.
bottom
)
{
This
->
WindowPos
.
top
=
This
->
DestRect
.
top
;
This
->
WindowPos
.
bottom
=
This
->
DestRect
.
bottom
;
}
else
{
This
->
WindowPos
.
top
=
This
->
SourceRect
.
top
;
This
->
WindowPos
.
bottom
=
This
->
SourceRect
.
bottom
;
}
}
AdjustWindowRectEx
(
&
This
->
WindowPos
,
style
,
TRUE
,
style_ex
);
...
...
@@ -740,7 +757,7 @@ static ULONG WINAPI VideoRenderer_Release(IBaseFilter * iface)
static
HRESULT
WINAPI
VideoRenderer_Pause
(
IBaseFilter
*
iface
)
{
VideoRendererImpl
*
This
=
impl_from_IBaseFilter
(
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
EnterCriticalSection
(
&
This
->
renderer
.
csRenderLock
);
...
...
@@ -781,9 +798,8 @@ static const IBaseFilterVtbl VideoRenderer_Vtbl =
};
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Basicvideo_QueryInterface
(
IBasicVideo
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
static
HRESULT
WINAPI
Basicvideo_QueryInterface
(
IBasicVideo
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
VideoRendererImpl
*
This
=
impl_from_IBasicVideo
(
iface
);
TRACE
(
"(%p/%p)->(%s (%p), %p)
\n
"
,
This
,
iface
,
debugstr_guid
(
riid
),
riid
,
ppvObj
);
...
...
@@ -852,9 +868,8 @@ static const IBasicVideoVtbl IBasicVideo_VTable =
/*** IUnknown methods ***/
static
HRESULT
WINAPI
Videowindow_QueryInterface
(
IVideoWindow
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
static
HRESULT
WINAPI
Videowindow_QueryInterface
(
IVideoWindow
*
iface
,
REFIID
riid
,
LPVOID
*
ppvObj
)
{
VideoRendererImpl
*
This
=
impl_from_IVideoWindow
(
iface
);
TRACE
(
"(%p/%p)->(%s (%p), %p)
\n
"
,
This
,
iface
,
debugstr_guid
(
riid
),
riid
,
ppvObj
);
...
...
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