Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
40c60b69
Commit
40c60b69
authored
Jul 31, 1999
by
Abey George
Committed by
Alexandre Julliard
Jul 31, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fix for updating the clipping region in nested GetDCEx calls.
parent
a961c445
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
dce.c
windows/dce.c
+7
-3
No files found.
windows/dce.c
View file @
40c60b69
...
...
@@ -758,10 +758,14 @@ HDC WINAPI GetDCEx( HWND hwnd, HRGN hrgnClip, DWORD flags )
TRACE
(
"
\t
skipping hVisRgn update
\n
"
);
bUpdateVisRgn
=
FALSE
;
/* updated automatically, via DCHook() */
if
(
(
dce
->
DCXflags
&
(
DCX_EXCLUDERGN
|
DCX_INTERSECTRGN
))
&&
(
flags
&
(
DCX_EXCLUDERGN
|
DCX_INTERSECTRGN
))
)
/* Abey - 16Jul99. to take care of the nested GetDC. first one
with DCX_EXCLUDERGN or DCX_INTERSECTRGN flags and the next
one with or without these flags. */
if
(
dce
->
DCXflags
&
(
DCX_EXCLUDERGN
|
DCX_INTERSECTRGN
))
{
/* This is likely to be a nested BeginPaint(). */
/* This is likely to be a nested BeginPaint().
or a BeginPaint() followed by a GetDC()*/
if
(
dce
->
hClipRgn
!=
hrgnClip
)
{
...
...
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