Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
710b39fa
Commit
710b39fa
authored
May 20, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Called vout_display_DeleteWindow(vd, NULL) for vout display not using vout window.
parent
5741789d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
0 deletions
+6
-0
modules/video_output/aa.c
modules/video_output/aa.c
+1
-0
modules/video_output/caca.c
modules/video_output/caca.c
+1
-0
modules/video_output/directfb.c
modules/video_output/directfb.c
+1
-0
modules/video_output/fb.c
modules/video_output/fb.c
+1
-0
modules/video_output/macosx.m
modules/video_output/macosx.m
+1
-0
modules/video_output/sdl.c
modules/video_output/sdl.c
+1
-0
No files found.
modules/video_output/aa.c
View file @
710b39fa
...
...
@@ -97,6 +97,7 @@ static int Open(vlc_object_t *object)
msg_Err
(
vd
,
"cannot initialize aalib"
);
goto
error
;
}
vout_display_DeleteWindow
(
vd
,
NULL
);
aa_autoinitkbd
(
sys
->
aa_context
,
0
);
aa_autoinitmouse
(
sys
->
aa_context
,
AA_MOUSEALLMASK
);
...
...
modules/video_output/caca.c
View file @
710b39fa
...
...
@@ -153,6 +153,7 @@ static int Open(vlc_object_t *object)
msg_Err
(
vd
,
"cannot initialize libcaca"
);
goto
error
;
}
vout_display_DeleteWindow
(
vd
,
NULL
);
if
(
vd
->
cfg
->
display
.
title
)
caca_set_display_title
(
sys
->
dp
,
...
...
modules/video_output/directfb.c
View file @
710b39fa
...
...
@@ -108,6 +108,7 @@ static int Open(vlc_object_t *object)
Close
(
VLC_OBJECT
(
vd
));
return
VLC_EGENERIC
;
}
vout_display_DeleteWindow
(
vd
,
NULL
);
/* */
video_format_t
fmt
=
vd
->
fmt
;
...
...
modules/video_output/fb.c
View file @
710b39fa
...
...
@@ -251,6 +251,7 @@ static int Open(vlc_object_t *object)
Close
(
VLC_OBJECT
(
vd
));
return
VLC_EGENERIC
;
}
vout_display_DeleteWindow
(
vd
,
NULL
);
/* */
video_format_t
fmt
=
vd
->
fmt
;
...
...
modules/video_output/macosx.m
View file @
710b39fa
...
...
@@ -127,6 +127,7 @@ static int Open(vlc_object_t *this)
msg_Dbg
(
vd
,
"No drawable-nsobject, passing over."
);
goto
error
;
}
vout_display_DeleteWindow
(
vd
,
NULL
);
/* This will be released in Close(), on
* main thread, after we are done using it. */
...
...
modules/video_output/sdl.c
View file @
710b39fa
...
...
@@ -180,6 +180,7 @@ static int Open(vlc_object_t *object)
msg_Err
(
vd
,
"no video mode available"
);
goto
error
;
}
vout_display_DeleteWindow
(
vd
,
NULL
);
sys
->
display
=
SDL_SetVideoMode
(
display_width
,
display_height
,
sys
->
display_bpp
,
sys
->
display_flags
);
...
...
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