Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
f56d33ed
Commit
f56d33ed
authored
Oct 11, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Direct3D: destroy the window if any when in desktop wall paper mode
parent
75831244
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/video_output/msw/events.c
modules/video_output/msw/events.c
+3
-2
No files found.
modules/video_output/msw/events.c
View file @
f56d33ed
...
...
@@ -683,8 +683,8 @@ static int Win32VoutCreateWindow( event_thread_t *p_event )
#ifdef MODULE_NAME_IS_direct3d
if
(
!
p_event
->
use_desktop
)
{
#endif
{
vout_window_cfg_t
wnd_cfg
=
{
.
type
=
VOUT_WINDOW_TYPE_HWND
,
.
width
=
p_event
->
width
,
...
...
@@ -697,10 +697,11 @@ static int Win32VoutCreateWindow( event_thread_t *p_event )
p_event
->
hparent
=
p_event
->
parent_window
->
handle
.
hwnd
;
else
p_event
->
hparent
=
NULL
;
#ifdef MODULE_NAME_IS_direct3d
}
#ifdef MODULE_NAME_IS_direct3d
else
{
vout_display_DeleteWindow
(
vd
,
NULL
);
p_event
->
parent_window
=
NULL
;
p_event
->
hparent
=
GetDesktopHandle
(
vd
);
}
...
...
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