Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
1146bde3
Commit
1146bde3
authored
May 06, 2022
by
Pedro Perdigão
Committed by
Alexandre Julliard
May 13, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Allow an out-of-order RECT in RedrawWindow().
Signed-off-by:
Pedro Perdigão
<
pperdigao@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
06b34716
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
12 deletions
+11
-12
msg.c
dlls/user32/tests/msg.c
+6
-10
dce.c
dlls/win32u/dce.c
+5
-2
No files found.
dlls/user32/tests/msg.c
View file @
1146bde3
...
...
@@ -8174,9 +8174,8 @@ void dump_region(HRGN hrgn)
HeapFree
(
GetProcessHeap
(),
0
,
data
);
}
#define todo_check_update_rgn( hwnd, hrgn ) check_update_rgn_( __LINE__, TRUE, hwnd, hrgn )
#define check_update_rgn( hwnd, hrgn ) check_update_rgn_( __LINE__, FALSE, hwnd, hrgn )
static
void
check_update_rgn_
(
int
line
,
BOOL
todo
,
HWND
hwnd
,
HRGN
hrgn
)
#define check_update_rgn( hwnd, hrgn ) check_update_rgn_( __LINE__, hwnd, hrgn )
static
void
check_update_rgn_
(
int
line
,
HWND
hwnd
,
HRGN
hrgn
)
{
INT
ret
;
RECT
r1
,
r2
;
...
...
@@ -8187,10 +8186,7 @@ static void check_update_rgn_( int line, BOOL todo, HWND hwnd, HRGN hrgn )
ok
(
ret
!=
ERROR
,
"GetUpdateRgn failed
\n
"
);
if
(
ret
==
NULLREGION
)
{
if
(
todo
)
todo_wine
ok_
(
__FILE__
,
line
)(
!
hrgn
,
"Update region shouldn't be empty
\n
"
);
else
ok_
(
__FILE__
,
line
)(
!
hrgn
,
"Update region shouldn't be empty
\n
"
);
ok_
(
__FILE__
,
line
)(
!
hrgn
,
"Update region shouldn't be empty
\n
"
);
}
else
{
...
...
@@ -8434,7 +8430,7 @@ static void test_paint_messages(void)
ret
=
RedrawWindow
(
hwnd
,
&
rect
,
NULL
,
RDW_INVALIDATE
);
ok
(
ret
,
"RedrawWindow returned %d instead of TRUE
\n
"
,
ret
);
SetRectRgn
(
hrgn
,
7
,
12
,
21
,
30
);
todo_
check_update_rgn
(
hwnd
,
hrgn
);
check_update_rgn
(
hwnd
,
hrgn
);
/* Top and bottom are swapped */
RedrawWindow
(
hwnd
,
NULL
,
0
,
RDW_VALIDATE
|
RDW_NOFRAME
|
RDW_NOERASE
);
...
...
@@ -8442,7 +8438,7 @@ static void test_paint_messages(void)
ret
=
RedrawWindow
(
hwnd
,
&
rect
,
NULL
,
RDW_INVALIDATE
);
ok
(
ret
,
"RedrawWindow returned %d instead of TRUE
\n
"
,
ret
);
SetRectRgn
(
hrgn
,
7
,
12
,
21
,
30
);
todo_
check_update_rgn
(
hwnd
,
hrgn
);
check_update_rgn
(
hwnd
,
hrgn
);
/* both reference points are swapped */
RedrawWindow
(
hwnd
,
NULL
,
0
,
RDW_VALIDATE
|
RDW_NOFRAME
|
RDW_NOERASE
);
...
...
@@ -8450,7 +8446,7 @@ static void test_paint_messages(void)
ret
=
RedrawWindow
(
hwnd
,
&
rect
,
NULL
,
RDW_INVALIDATE
);
ok
(
ret
,
"RedrawWindow returned %d instead of TRUE
\n
"
,
ret
);
SetRectRgn
(
hrgn
,
7
,
12
,
21
,
30
);
todo_
check_update_rgn
(
hwnd
,
hrgn
);
check_update_rgn
(
hwnd
,
hrgn
);
/* flush pending messages */
flush_events
();
...
...
dlls/win32u/dce.c
View file @
1146bde3
...
...
@@ -1457,8 +1457,11 @@ BOOL WINAPI NtUserRedrawWindow( HWND hwnd, const RECT *rect, HRGN hrgn, UINT fla
if
(
rect
&&
!
hrgn
)
{
if
(
IsRectEmpty
(
rect
))
rect
=
&
empty
;
ret
=
redraw_window_rects
(
hwnd
,
flags
,
rect
,
1
);
RECT
ordered
=
*
rect
;
order_rect
(
&
ordered
);
if
(
IsRectEmpty
(
&
ordered
))
ordered
=
empty
;
ret
=
redraw_window_rects
(
hwnd
,
flags
,
&
ordered
,
1
);
}
else
if
(
!
hrgn
)
{
...
...
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