Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
8d5d2f83
Commit
8d5d2f83
authored
Jan 01, 2008
by
ivoire
Browse files
Little correction of the double-clicks detection under sdl
parent
bace31c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/video_output/sdl.c
View file @
8d5d2f83
...
...
@@ -219,8 +219,8 @@ static int Open ( vlc_object_t *p_this )
p_vout
->
p_sys
->
b_cursor
=
1
;
p_vout
->
p_sys
->
b_cursor_autohidden
=
0
;
p_vout
->
p_sys
->
i_lastmoved
=
mdate
();
p_vout
->
p_sys
->
i_lastmoved
=
p_vout
->
p_sys
->
i_lastpressed
=
mdate
();
if
(
OpenDisplay
(
p_vout
)
)
{
msg_Err
(
p_vout
,
"cannot set up SDL (%s)"
,
SDL_GetError
()
);
...
...
@@ -361,8 +361,8 @@ static int Manage( vout_thread_t *p_vout )
{
switch
(
event
.
type
)
{
case
SDL_VIDEORESIZE
:
/* Resizing of window */
/* Update dimensions */
/* Resizing of window */
case
SDL_VIDEORESIZE
:
p_vout
->
i_changes
|=
VOUT_SIZE_CHANGE
;
p_vout
->
i_window_width
=
p_vout
->
p_sys
->
i_width
=
event
.
resize
.
w
;
p_vout
->
i_window_height
=
p_vout
->
p_sys
->
i_height
=
event
.
resize
.
h
;
...
...
@@ -746,8 +746,8 @@ static int OpenDisplay( vout_thread_t *p_vout )
}
p_vout
->
p_sys
->
p_display
=
SDL_SetVideoMode
(
p_vout
->
p_sys
->
i_width
,
p_vout
->
p_sys
->
i_height
,
i_bpp
,
i_flags
);
p_vout
->
p_sys
->
i_height
,
i_bpp
,
i_flags
);
if
(
p_vout
->
p_sys
->
p_display
==
NULL
)
{
...
...
Write
Preview
Supports
Markdown
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