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
a332bed4
Commit
a332bed4
authored
Sep 28, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed useless b_focus variable in msw.
parent
cf2ccb0d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
4 deletions
+0
-4
modules/video_output/msw/events.c
modules/video_output/msw/events.c
+0
-2
modules/video_output/msw/vout.h
modules/video_output/msw/vout.h
+0
-1
modules/video_output/msw/wingdi.c
modules/video_output/msw/wingdi.c
+0
-1
No files found.
modules/video_output/msw/events.c
View file @
a332bed4
...
...
@@ -778,7 +778,6 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
case
WM_KILLFOCUS
:
#ifdef MODULE_NAME_IS_wingapi
p_vout
->
p_sys
->
b_focus
=
false
;
if
(
!
p_vout
->
p_sys
->
b_parent_focus
)
GXSuspend
();
#endif
#ifdef UNDER_CE
...
...
@@ -798,7 +797,6 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
case
WM_SETFOCUS
:
#ifdef MODULE_NAME_IS_wingapi
p_vout
->
p_sys
->
b_focus
=
true
;
GXResume
();
#endif
#ifdef UNDER_CE
...
...
modules/video_output/msw/vout.h
View file @
a332bed4
...
...
@@ -219,7 +219,6 @@ struct vout_sys_t
RGBQUAD
green
;
RGBQUAD
blue
;
bool
b_focus
;
bool
b_parent_focus
;
HINSTANCE
gapi_dll
;
/* handle of the opened gapi dll */
...
...
modules/video_output/msw/wingdi.c
View file @
a332bed4
...
...
@@ -149,7 +149,6 @@ static int OpenVideo ( vlc_object_t *p_this )
#ifdef MODULE_NAME_IS_wingapi
p_vout
->
pf_display
=
FirstDisplayGAPI
;
p_vout
->
p_sys
->
b_focus
=
0
;
p_vout
->
p_sys
->
b_parent_focus
=
0
;
#else
p_vout
->
pf_display
=
FirstDisplayGDI
;
...
...
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