Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
e36b4e6a
Commit
e36b4e6a
authored
Jan 03, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics (msw).
parent
955de909
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
8 deletions
+6
-8
modules/video_output/msw/common.h
modules/video_output/msw/common.h
+6
-7
modules/video_output/msw/direct3d.c
modules/video_output/msw/direct3d.c
+0
-1
No files found.
modules/video_output/msw/common.h
View file @
e36b4e6a
...
...
@@ -80,13 +80,6 @@ struct vout_display_sys_t
HWND
hparent
;
/* Handle of the parent window */
HWND
hfswnd
;
/* Handle of the fullscreen window */
/* Multi-monitor support
* TODO move to directx only */
HMONITOR
hmonitor
;
/* handle of the current monitor */
GUID
*
display_driver
;
HMONITOR
(
WINAPI
*
MonitorFromWindow
)(
HWND
,
DWORD
);
BOOL
(
WINAPI
*
GetMonitorInfo
)(
HMONITOR
,
LPMONITORINFO
);
/* size of the display */
RECT
rect_display
;
int
display_depth
;
...
...
@@ -118,6 +111,12 @@ struct vout_display_sys_t
picture_pool_t
*
pool
;
#ifdef MODULE_NAME_IS_directx
/* Multi-monitor support */
HMONITOR
hmonitor
;
/* handle of the current monitor */
GUID
*
display_driver
;
HMONITOR
(
WINAPI
*
MonitorFromWindow
)(
HWND
,
DWORD
);
BOOL
(
WINAPI
*
GetMonitorInfo
)(
HMONITOR
,
LPMONITORINFO
);
/* Overlay alignment restrictions */
int
i_align_src_boundary
;
int
i_align_src_size
;
...
...
modules/video_output/msw/direct3d.c
View file @
e36b4e6a
...
...
@@ -594,7 +594,6 @@ static void Direct3DClose(vout_display_t *vd)
IDirect3DDevice9_Release
(
sys
->
d3ddev
);
sys
->
d3ddev
=
NULL
;
sys
->
hmonitor
=
NULL
;
}
/**
...
...
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