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
fb62d061
Commit
fb62d061
authored
Aug 27, 2008
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Fix for CombineModeReplace with some tests.
parent
b8711acb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
100 additions
and
7 deletions
+100
-7
region.c
dlls/gdiplus/region.c
+25
-0
region.c
dlls/gdiplus/tests/region.c
+75
-7
No files found.
dlls/gdiplus/region.c
View file @
fb62d061
...
...
@@ -242,6 +242,13 @@ GpStatus WINGDIPAPI GdipCombineRegionPath(GpRegion *region, GpPath *path, Combin
if
(
stat
!=
Ok
)
return
stat
;
/* simply replace region data */
if
(
mode
==
CombineModeReplace
){
delete_element
(
&
region
->
node
);
memcpy
(
region
,
path_region
,
sizeof
(
GpRegion
));
return
Ok
;
}
left
=
GdipAlloc
(
sizeof
(
region_element
));
if
(
!
left
)
goto
out
;
...
...
@@ -279,6 +286,13 @@ GpStatus WINGDIPAPI GdipCombineRegionRect(GpRegion *region,
if
(
stat
!=
Ok
)
return
stat
;
/* simply replace region data */
if
(
mode
==
CombineModeReplace
){
delete_element
(
&
region
->
node
);
memcpy
(
region
,
rect_region
,
sizeof
(
GpRegion
));
return
Ok
;
}
left
=
GdipAlloc
(
sizeof
(
region_element
));
if
(
!
left
)
goto
out
;
...
...
@@ -323,12 +337,23 @@ GpStatus WINGDIPAPI GdipCombineRegionRegion(GpRegion *region1,
{
region_element
*
left
,
*
right
=
NULL
;
GpStatus
stat
;
GpRegion
*
reg2copy
;
TRACE
(
"%p %p %d
\n
"
,
region1
,
region2
,
mode
);
if
(
!
(
region1
&&
region2
))
return
InvalidParameter
;
/* simply replace region data */
if
(
mode
==
CombineModeReplace
){
stat
=
GdipCloneRegion
(
region2
,
&
reg2copy
);
if
(
stat
!=
Ok
)
return
stat
;
delete_element
(
&
region1
->
node
);
memcpy
(
region1
,
reg2copy
,
sizeof
(
GpRegion
));
return
Ok
;
}
left
=
GdipAlloc
(
sizeof
(
region_element
));
if
(
!
left
)
return
OutOfMemory
;
...
...
dlls/gdiplus/tests/region.c
View file @
fb62d061
...
...
@@ -553,10 +553,11 @@ static void test_isempty(void)
static
void
test_combinereplace
(
void
)
{
GpStatus
status
;
GpRegion
*
region
;
GpRegion
*
region
,
*
region2
;
GpPath
*
path
;
GpRectF
rectf
;
UINT
needed
;
DWORD
buf
[
1
0
];
DWORD
buf
[
5
0
];
rectf
.
X
=
rectf
.
Y
=
0
.
0
;
rectf
.
Width
=
rectf
.
Height
=
100
.
0
;
...
...
@@ -570,15 +571,82 @@ static void test_combinereplace(void)
status
=
GdipGetRegionDataSize
(
region
,
&
needed
);
expect
(
Ok
,
status
);
todo_wine
expect
(
36
,
needed
);
expect
(
36
,
needed
);
status
=
GdipGetRegionData
(
region
,
(
BYTE
*
)
buf
,
sizeof
(
buf
),
&
needed
);
expect
(
Ok
,
status
);
expect
(
36
,
needed
);
expect_dword
(
buf
,
28
);
trace
(
"buf[1] = %08x
\n
"
,
buf
[
1
]);
expect_magic
((
DWORD
*
)(
buf
+
2
));
expect_dword
(
buf
+
3
,
0
);
expect_dword
(
buf
+
4
,
RGNDATA_RECT
);
/* replace with path */
status
=
GdipCreatePath
(
FillModeAlternate
,
&
path
);
expect
(
Ok
,
status
);
status
=
GdipAddPathEllipse
(
path
,
0
.
0
,
0
.
0
,
100
.
0
,
250
.
0
);
expect
(
Ok
,
status
);
status
=
GdipCombineRegionPath
(
region
,
path
,
CombineModeReplace
);
expect
(
Ok
,
status
);
status
=
GdipGetRegionDataSize
(
region
,
&
needed
);
expect
(
Ok
,
status
);
expect
(
156
,
needed
);
status
=
GdipGetRegionData
(
region
,
(
BYTE
*
)
buf
,
sizeof
(
buf
),
&
needed
);
expect
(
Ok
,
status
);
expect
(
156
,
needed
);
expect_dword
(
buf
,
148
);
trace
(
"buf[1] = %08x
\n
"
,
buf
[
1
]);
expect_magic
((
DWORD
*
)(
buf
+
2
));
expect_dword
(
buf
+
3
,
0
);
expect_dword
(
buf
+
4
,
RGNDATA_PATH
);
GdipDeletePath
(
path
);
/* replace with infinite rect */
status
=
GdipCreateRegion
(
&
region2
);
expect
(
Ok
,
status
);
status
=
GdipCombineRegionRegion
(
region
,
region2
,
CombineModeReplace
);
expect
(
Ok
,
status
);
status
=
GdipGetRegionDataSize
(
region
,
&
needed
);
expect
(
Ok
,
status
);
expect
(
20
,
needed
);
status
=
GdipGetRegionData
(
region
,
(
BYTE
*
)
buf
,
sizeof
(
buf
),
&
needed
);
expect
(
Ok
,
status
);
expect
(
20
,
needed
);
expect_dword
(
buf
,
12
);
trace
(
"buf[1] = %08x
\n
"
,
buf
[
1
]);
expect_magic
((
DWORD
*
)(
buf
+
2
));
expect_dword
(
buf
+
3
,
0
);
expect_dword
(
buf
+
4
,
RGNDATA_INFINITE_RECT
);
GdipDeletePath
(
path
);
GdipDeleteRegion
(
region2
);
/* more complex case : replace with a combined region */
status
=
GdipCreateRegionRect
(
&
rectf
,
&
region2
);
expect
(
Ok
,
status
);
status
=
GdipCreatePath
(
FillModeAlternate
,
&
path
);
expect
(
Ok
,
status
);
status
=
GdipAddPathEllipse
(
path
,
0
.
0
,
0
.
0
,
100
.
0
,
250
.
0
);
expect
(
Ok
,
status
);
status
=
GdipCombineRegionPath
(
region2
,
path
,
CombineModeUnion
);
expect
(
Ok
,
status
);
GdipDeletePath
(
path
);
status
=
GdipCombineRegionRegion
(
region
,
region2
,
CombineModeReplace
);
expect
(
Ok
,
status
);
GdipDeleteRegion
(
region2
);
status
=
GdipGetRegionDataSize
(
region
,
&
needed
);
expect
(
Ok
,
status
);
expect
(
180
,
needed
);
status
=
GdipGetRegionData
(
region
,
(
BYTE
*
)
buf
,
sizeof
(
buf
),
&
needed
);
expect
(
Ok
,
status
);
todo_wine
expect
(
36
,
needed
);
todo_wine
expect_dword
(
buf
,
28
);
expect
(
180
,
needed
);
expect_dword
(
buf
,
172
);
trace
(
"buf[1] = %08x
\n
"
,
buf
[
1
]);
expect_magic
((
DWORD
*
)(
buf
+
2
));
todo_wine
expect_dword
(
buf
+
3
,
0
);
todo_wine
expect_dword
(
buf
+
4
,
RGNDATA_RECT
);
expect_dword
(
buf
+
3
,
2
);
expect_dword
(
buf
+
4
,
CombineModeUnion
);
GdipDeleteRegion
(
region
);
}
...
...
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