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
89a7f21f
Commit
89a7f21f
authored
Apr 25, 2007
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- directx: optimize WM_PAINT event handling
parent
b939d657
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
3 deletions
+18
-3
modules/video_output/directx/events.c
modules/video_output/directx/events.c
+18
-3
No files found.
modules/video_output/directx/events.c
View file @
89a7f21f
...
@@ -790,7 +790,24 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
...
@@ -790,7 +790,24 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
}
}
if
(
hwnd
==
p_vout
->
p_sys
->
hvideownd
)
if
(
hwnd
==
p_vout
->
p_sys
->
hvideownd
)
{
switch
(
message
)
{
case
WM_ERASEBKGND
:
// erase the background only if a brush is set
return
(
0UL
==
GetClassLong
(
hwnd
,
GCL_HBRBACKGROUND
)
)
?
1
:
DefWindowProc
(
hwnd
,
message
,
wParam
,
lParam
);
case
WM_PAINT
:
if
(
0UL
==
GetClassLong
(
hwnd
,
GCL_HBRBACKGROUND
)
)
{
// vout paints the whole area, no need to repaint it
ValidateRect
(
hwnd
,
NULL
);
}
// fall through
default:
return
DefWindowProc
(
hwnd
,
message
,
wParam
,
lParam
);
return
DefWindowProc
(
hwnd
,
message
,
wParam
,
lParam
);
}
}
switch
(
message
)
switch
(
message
)
{
{
...
@@ -842,8 +859,6 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
...
@@ -842,8 +859,6 @@ static long FAR PASCAL DirectXEventProc( HWND hwnd, UINT message,
case
WM_PAINT
:
case
WM_PAINT
:
case
WM_NCPAINT
:
case
WM_NCPAINT
:
case
WM_ERASEBKGND
:
case
WM_ERASEBKGND
:
/* We do not want to relay these messages to the parent window
* because we rely on the background color for the overlay. */
return
DefWindowProc
(
hwnd
,
message
,
wParam
,
lParam
);
return
DefWindowProc
(
hwnd
,
message
,
wParam
,
lParam
);
default:
default:
...
...
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